The MEA data obtained from videos of therapy sessions is analysed. All 14 videos correspond to the first session with a different patient. In each case, six regions of interest (ROI) are considered, three for each subject (patient and therapist): head, torso and legs. The exploratory analysis is done in two parts:
In the first part, each video is partitioned into 5 minutes segments. Lagged correlations (for five seconds in each direction) are performed in order to detect in which of these segments there exists a high correlation (either positive or negative) between the movements of therapist and patient, for the same ROI.
In the second part, the videos are partitioned into much shorter periods (30 seconds). The ones with high movement of both subjects and the same ROI are registered. Cross correlations are performed and visualized for those registered periods.
Basic information of the 19 videos is registered in table logbook. Here we show the top entries of this table.
| file | sampling_rate | patient | date | inicial_cut | final_cut | total_span_min | trimmed_span_min | InterviewType | sex | classification | name | therapist | DX |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Vid0 | 30 | 1 | 24/04/2012 | 13 | 0 | 40.05 | 40.05 | E | H | T | Enrique:TLP/TNP | Iván | Longitud/A |
| Vid12 | 30 | 71 | 23/01/2014 | 9 | 0 | 22.07 | 22.07 | N | M | T | Iraní:TLP | Iván | B |
| Vid13 | 30 | 134 | 02/09/2014 | 8 | 0 | 37.02 | 37.02 | N | M | T | Solverg:TLP/TNP | Iván | B |
| Vid14 | 30 | 870 | 20/10/2015 | 10 | 0 | 40.01 | 40.00 | S | M | C | Yanelle:control | Iván | C |
| Vid15 | 30 | 160 | 19/08/2015 | 8 | 0 | 43.78 | 43.77 | S | M | C | Mujer:control | Iván | C |
The list completa contains the data for each of the videos listed in logbook. As an example, completa[[‘Vid12’]] is a data set with observations. At a sampling rate of 30 frames per second, this corresponds to minutes for the video Vid12. Its first entries are shown below.
| tiempo | head_patient | torso_patient | legs_patient | head_therapist | torso_therapist | legs_therapist | |
|---|---|---|---|---|---|---|---|
| 271 | 271 | 0 | 0 | 0 | 37 | 166 | 0 |
| 272 | 272 | 0 | 0 | 0 | 31 | 66 | 0 |
| 273 | 273 | 0 | 0 | 0 | 1 | 10 | 0 |
| 274 | 274 | 0 | 0 | 0 | 0 | 3 | 0 |
| 275 | 275 | 0 | 0 | 0 | 2 | 7 | 53 |
| 276 | 276 | 0 | 0 | 0 | 60 | 1 | 0 |
The code below generates the database selected_lapses. This contains information on segments where high correlation (with time lags) between the movements of the subjects is detected. Each of the videos in logbook is partiotioned in 5 minutes segments. For each segment and roi, cross correlations (wuth 3 seconds max-lags in both directions) between therapist and subject movements are performed; the maximum and the mean values for the correlations for all the lags are recorded; if either the max>0.7 or mean>0.3 the segment is added to the list. If the maximum correlation corresponds to lag 0, the segment is discarded (simultaneous movement), since the correlation in this case is most likely due to external noise.
selected_lapses<-data.frame(matrix(ncol = 12,nrow = 0))
for (video in names(completa)){
temp <- crear_lista(partition_data(completa[[video]]),
nombre = video,umbral_max = 0.7,umbral_mean = 0.5,
segundos = 60*minutes_particion)
names(selected_lapses)<-names(temp)
selected_lapses<-rbind(selected_lapses,temp)
}
selected_lapses<-cbind(id=1:dim(selected_lapses)[1],selected_lapses)
selected_lapses<-filter(selected_lapses,abs(lag_spearman_max)>0.025)
write.csv(selected_lapses,"selected_lapses.csv",row.names = FALSE)
| id | video | zone | num_period | start | end | spearman_max | lag_spearman_max | spearman_min | lag_spearman_min | sex | type |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | Vid14 | torso | 7 | 30.2 | 35.2 | -0.4817490 | -5.0 | -0.5468570 | 1.93 | M | C |
| 2 | Vid22 | torso | 3 | 10.1 | 15.1 | -0.5002888 | -5.0 | -0.6430308 | 2.63 | M | C |
| 5 | Vid23 | head | 6 | 25.2 | 30.2 | 0.7083630 | 0.2 | 0.2712255 | -4.97 | M | T |
| 6 | Vid23 | head | 7 | 30.2 | 35.2 | 0.7669631 | 0.1 | 0.4135257 | -5.00 | M | T |
We include two functions functions comparativa_visual and corr_cruzadas for visualizing the data of the segments with high correlation. The fundamental input for both functions is the number in the id column of selected_lapses.
## function (id, min_ini = 0, min_fin = 100, que_lista = selected_lapses)
## {
## temp <- corta_lista(id, ls = que_lista)[[1]]
## temp2 <- corta_lista(id, ls = que_lista)
## g <- ggplot() + geom_line(data = filter(temp, tiempo > min_ini,
## tiempo < min_fin), aes(tiempo, suave_patient), color = "blue",
## size = 0.5) + geom_line(data = filter(temp, tiempo >
## min_ini, tiempo < min_fin), aes(tiempo, suave_therapist),
## color = "brown", size = 0.5) + ggtitle(temp2[["video"]]) +
## xlab("minute in video") + ylab("Blue: patient. Red: therapist.")
## show(g)
## return(g)
## }
## function (id, que_lista = selected_lapses)
## {
## temp <- corta_lista(id, ls = que_lista)[[1]]
## cecefe <- ccf(rank(temp$suave_patient), rank(temp$suave_therapist),
## plot = FALSE, lag.max = 150)
## aux <- data.frame(segundos = cecefe$lag[, 1, 1]/30, correlacion = cecefe$acf[,
## 1, 1])
## temp2 <- corta_lista(id, ls = que_lista)
## g <- ggplot(aux, aes(segundos, correlacion)) + geom_col(color = "orange",
## fill = "purple") + ggtitle(paste(temp2[["video"]], temp2[["minutes"]],
## sep = " ")) + xlab("patient leads <-- lag in seconds --> therapist leads") +
## ylab("cross correlation")
## show(g)
## return(g)
## }
The function comparativa_visual returns a plot that shows the movement of both therapist and patient for the corresponding segment and roi. The data is smoothed by teking the average movements in 1 second windows. We generate below the plots generated by this function for all the 4 segments with high correlation.
## Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
## ℹ Please use `linewidth` instead.
The function corr_cruzadas shows the cross correlation between movements of both subjects at lags of up to 3 seconds (in both directions). The plots are generated below.
With the function comparativa_visual we can zoom in to look into shorter periods of time. As an example, we generate the plot of the first segment (id=1) from minute 32.1 to minute 32.9:
comparativa_visual(id=1,min_ini = 32.1,min_fin = 32.9)
Videos are partitioned into 30 second segments. The mean amounts of movement for each roi are calculated (as recorded by the MEA software). If the means of both the therapist and patient are in the top 50 quantile, the corresponding data for that roi and time is registered in the list lista_mov_altos.
Below, we show the database lista_mov_altos containing 884 segments having high mobility for both subjects. Cross correlations were evaluated and registered for each of these segments. To determine which subject is leading, the sign og the lag with maximum correlation is considered (positive when therapist leads).
| id | video | zone | num_period | start | end | mov_patient | mov_therapist | mov_medio | spearman_max | lag_spearman_max | spearman_min | lag_spearman_min | lidera | sex | type | se_mueve_mas |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | Vid0 | head | 6 | 2.7 | 3.2 | 686.4199630 | 140.280074 | 413.350018 | 0.3662534 | -4.60 | -0.4565995 | 4.77 | therapist | H | T | patient |
| 2 | Vid0 | head | 15 | 7.2 | 7.7 | 615.9965556 | 307.454556 | 461.725556 | 0.0406654 | 5.00 | -0.6091974 | -0.63 | patient | H | T | patient |
| 3 | Vid0 | head | 18 | 8.7 | 9.2 | 944.5618148 | 118.374185 | 531.468000 | 0.0900868 | 3.57 | -0.3361703 | 1.77 | therapist | H | T | patient |
| 4 | Vid0 | head | 19 | 9.2 | 9.7 | 839.2965926 | 88.683407 | 463.990000 | 0.1538465 | 4.40 | -0.2030311 | -5.00 | patient | H | T | patient |
| 5 | Vid0 | head | 28 | 13.7 | 14.2 | 803.9494074 | 184.009148 | 493.979278 | 0.1307634 | 5.00 | -0.6135124 | -0.33 | patient | H | T | patient |
| 6 | Vid0 | head | 31 | 15.2 | 15.7 | 2363.3188519 | 114.599667 | 1238.959259 | 0.0841102 | 2.37 | -0.2015078 | 0.67 | therapist | H | T | patient |
| 7 | Vid0 | head | 35 | 17.2 | 17.7 | 1297.8551481 | 332.246778 | 815.050963 | 0.2539421 | 3.87 | -0.5266163 | -0.23 | patient | H | T | patient |
| 8 | Vid0 | head | 39 | 19.2 | 19.7 | 837.7460741 | 105.860444 | 471.803259 | -0.0149381 | -1.57 | -0.3991757 | 4.27 | therapist | H | T | patient |
| 9 | Vid0 | head | 44 | 21.7 | 22.2 | 1119.5509630 | 115.686963 | 617.618963 | 0.2970029 | 3.67 | -0.4475045 | -3.07 | patient | H | T | patient |
| 10 | Vid0 | head | 45 | 22.2 | 22.7 | 1550.8191481 | 134.217667 | 842.518407 | 0.2728100 | -0.73 | -0.1548813 | 2.40 | patient | H | T | patient |
| 11 | Vid0 | head | 49 | 24.2 | 24.7 | 745.1992222 | 95.840444 | 420.519833 | 0.5724922 | -3.53 | -0.2927766 | 1.43 | patient | H | T | patient |
| 12 | Vid0 | head | 53 | 26.2 | 26.7 | 636.4958148 | 172.714852 | 404.605333 | 0.0204125 | 4.97 | -0.6160770 | 0.00 | - | H | T | patient |
| 13 | Vid0 | head | 58 | 28.7 | 29.2 | 2036.8990741 | 169.035556 | 1102.967315 | 0.0686692 | -5.00 | -0.4329164 | -1.70 | patient | H | T | patient |
| 14 | Vid0 | head | 61 | 30.2 | 30.7 | 865.0421481 | 128.239926 | 496.641037 | 0.0990712 | -1.80 | -0.3545043 | 4.60 | therapist | H | T | patient |
| 15 | Vid0 | head | 73 | 36.2 | 36.7 | 775.6214074 | 215.152481 | 495.386944 | 0.2040869 | 4.27 | -0.4385586 | 0.50 | therapist | H | T | patient |
| 16 | Vid0 | head | 74 | 36.7 | 37.2 | 607.8976296 | 243.341852 | 425.619741 | -0.1337355 | 3.80 | -0.4517578 | 0.17 | therapist | H | T | patient |
| 17 | Vid0 | head | 75 | 37.2 | 37.7 | 922.8894444 | 280.283074 | 601.586259 | 0.2051848 | -4.13 | -0.3767707 | 0.83 | therapist | H | T | patient |
| 18 | Vid0 | head | 76 | 37.7 | 38.2 | 1192.5166296 | 327.396963 | 759.956796 | 0.0975332 | 4.50 | -0.4404896 | -5.00 | patient | H | T | patient |
| 19 | Vid0 | torso | 22 | 10.7 | 11.2 | 1781.3069259 | 245.089333 | 1013.198130 | 0.3306376 | -0.37 | -0.1403367 | -4.33 | patient | H | T | patient |
| 20 | Vid0 | torso | 23 | 11.2 | 11.7 | 2507.5134815 | 503.689667 | 1505.601574 | 0.3571204 | 0.13 | -0.1231833 | -4.23 | therapist | H | T | patient |
| 21 | Vid0 | torso | 26 | 12.7 | 13.2 | 1020.0899259 | 259.069481 | 639.579704 | 0.4794751 | 4.80 | 0.0378999 | 0.73 | therapist | H | T | patient |
| 22 | Vid0 | torso | 29 | 14.2 | 14.7 | 1060.9395926 | 309.478519 | 685.209056 | 0.4241740 | -3.17 | -0.2065033 | 2.77 | patient | H | T | patient |
| 23 | Vid0 | torso | 30 | 14.7 | 15.2 | 2768.1181111 | 377.803444 | 1572.960778 | 0.4198025 | -1.73 | -0.0787314 | 1.57 | patient | H | T | patient |
| 24 | Vid0 | torso | 33 | 16.2 | 16.7 | 1519.7078519 | 227.549296 | 873.628574 | 0.5605166 | -4.17 | -0.1794542 | 3.80 | patient | H | T | patient |
| 25 | Vid0 | torso | 35 | 17.2 | 17.7 | 2193.3748889 | 355.371963 | 1274.373426 | 0.4793725 | 3.67 | -0.4592373 | -0.47 | therapist | H | T | patient |
| 26 | Vid0 | torso | 40 | 19.7 | 20.2 | 1130.5374444 | 275.919111 | 703.228278 | 0.2383100 | -3.57 | -0.1710060 | 0.27 | patient | H | T | patient |
| 27 | Vid0 | torso | 45 | 22.2 | 22.7 | 1766.6842963 | 291.907111 | 1029.295704 | 0.4149469 | 5.00 | -0.1565457 | 2.47 | therapist | H | T | patient |
| 28 | Vid0 | torso | 48 | 23.7 | 24.2 | 1499.0432593 | 204.408000 | 851.725630 | 0.1990035 | -1.60 | -0.1422957 | -5.00 | patient | H | T | patient |
| 29 | Vid0 | torso | 49 | 24.2 | 24.7 | 1508.4936667 | 395.034889 | 951.764278 | 0.1495820 | -4.70 | -0.2205527 | -0.70 | patient | H | T | patient |
| 30 | Vid0 | torso | 53 | 26.2 | 26.7 | 1553.8402593 | 497.098926 | 1025.469593 | -0.0289739 | -5.00 | -0.7248841 | 0.53 | therapist | H | T | patient |
| 31 | Vid0 | torso | 54 | 26.7 | 27.2 | 1115.7888519 | 352.418000 | 734.103426 | 0.2806914 | 1.87 | -0.4065545 | -5.00 | patient | H | T | patient |
| 32 | Vid0 | torso | 57 | 28.2 | 28.7 | 1566.3151111 | 188.557444 | 877.436278 | -0.1361543 | -3.87 | -0.6684430 | 1.50 | therapist | H | T | patient |
| 33 | Vid0 | torso | 58 | 28.7 | 29.2 | 2315.9945185 | 644.852037 | 1480.423278 | 0.1914888 | -5.00 | -0.4683496 | -2.17 | patient | H | T | patient |
| 34 | Vid0 | torso | 75 | 37.2 | 37.7 | 972.6537037 | 413.574037 | 693.113870 | 0.0233101 | -4.80 | -0.6107875 | 1.47 | therapist | H | T | patient |
| 35 | Vid0 | legs | 22 | 10.7 | 11.2 | 375.9472963 | 543.710111 | 459.828704 | 0.2293728 | -0.43 | -0.2302998 | -4.37 | patient | H | T | therapist |
| 36 | Vid0 | legs | 23 | 11.2 | 11.7 | 608.0016667 | 1116.650778 | 862.326222 | 0.3800370 | -1.27 | -0.2839359 | 3.13 | patient | H | T | therapist |
| 37 | Vid0 | legs | 24 | 11.7 | 12.2 | 535.2855185 | 283.719593 | 409.502556 | 0.3843822 | -2.67 | -0.0591608 | 3.53 | patient | H | T | patient |
| 38 | Vid0 | legs | 25 | 12.2 | 12.7 | 390.6065556 | 760.837444 | 575.722000 | 0.0362468 | 5.00 | -0.5817352 | 1.30 | therapist | H | T | therapist |
| 39 | Vid0 | legs | 26 | 12.7 | 13.2 | 331.8134444 | 273.470519 | 302.641981 | 0.5342210 | 3.43 | 0.2679542 | 0.97 | therapist | H | T | patient |
| 40 | Vid0 | legs | 30 | 14.7 | 15.2 | 436.6283333 | 712.124296 | 574.376315 | 0.4526935 | -2.33 | 0.1143648 | 1.40 | patient | H | T | therapist |
| 41 | Vid0 | legs | 33 | 16.2 | 16.7 | 170.5921852 | 228.758296 | 199.675241 | 0.5393016 | -2.73 | -0.1219329 | 3.33 | patient | H | T | therapist |
| 42 | Vid0 | legs | 38 | 18.7 | 19.2 | 329.6619259 | 233.081593 | 281.371759 | 0.0134427 | 0.60 | -0.2021997 | 4.97 | therapist | H | T | patient |
| 43 | Vid0 | legs | 48 | 23.7 | 24.2 | 277.7230741 | 288.311296 | 283.017185 | 0.2260703 | -2.73 | -0.2097306 | 2.43 | patient | H | T | - |
| 44 | Vid0 | legs | 49 | 24.2 | 24.7 | 347.0890741 | 340.215815 | 343.652444 | 0.4015544 | 3.00 | -0.4488958 | -0.57 | patient | H | T | - |
| 45 | Vid0 | legs | 51 | 25.2 | 25.7 | 264.7055185 | 293.038444 | 278.871982 | 0.4520839 | 5.00 | -0.1452641 | 0.27 | therapist | H | T | - |
| 46 | Vid0 | legs | 54 | 26.7 | 27.2 | 226.9324074 | 332.235000 | 279.583704 | 0.2150569 | 2.07 | -0.3161755 | -5.00 | patient | H | T | therapist |
| 47 | Vid0 | legs | 55 | 27.2 | 27.7 | 161.9559630 | 334.516704 | 248.236333 | 0.0041209 | -4.93 | -0.5739874 | 5.00 | therapist | H | T | therapist |
| 48 | Vid0 | legs | 57 | 28.2 | 28.7 | 278.0674074 | 272.110185 | 275.088796 | 0.0922506 | -5.00 | -0.6527049 | 2.23 | therapist | H | T | - |
| 49 | Vid0 | legs | 58 | 28.7 | 29.2 | 413.7898519 | 458.010630 | 435.900241 | 0.1440257 | -5.00 | -0.3973248 | -0.17 | patient | H | T | - |
| 50 | Vid0 | legs | 64 | 31.7 | 32.2 | 293.6328889 | 506.628370 | 400.130630 | 0.5775802 | 1.37 | 0.1232392 | -1.97 | therapist | H | T | therapist |
| 51 | Vid12 | head | 1 | 0.2 | 0.7 | 46.0128889 | 62.429556 | 54.221222 | 0.2300038 | -1.63 | -0.3521288 | 0.83 | therapist | M | T | therapist |
| 52 | Vid12 | head | 18 | 8.7 | 9.2 | 340.8235556 | 800.221815 | 570.522685 | 0.4400765 | -5.00 | -0.1538049 | 2.17 | patient | M | T | therapist |
| 53 | Vid12 | head | 20 | 9.7 | 10.2 | 96.2663333 | 443.135741 | 269.701037 | 0.5899977 | 2.73 | -0.3947963 | -5.00 | therapist | M | T | therapist |
| 54 | Vid12 | head | 26 | 12.7 | 13.2 | 120.2448889 | 625.914222 | 373.079556 | -0.0046764 | 2.33 | -0.4925428 | -1.03 | patient | M | T | therapist |
| 55 | Vid12 | head | 30 | 14.7 | 15.2 | 88.1076667 | 167.811407 | 127.959537 | 0.1011568 | 2.43 | -0.3131106 | -1.13 | patient | M | T | therapist |
| 56 | Vid12 | head | 33 | 16.2 | 16.6 | 66.3390741 | 365.640556 | 215.989815 | 0.2028604 | 4.83 | -0.4218178 | -5.00 | patient | M | T | therapist |
| 57 | Vid12 | head | 34 | 16.7 | 17.1 | 61.2366667 | 161.545407 | 111.391037 | 0.1819295 | 5.00 | -0.3538767 | 2.60 | therapist | M | T | therapist |
| 58 | Vid12 | head | 36 | 17.7 | 18.1 | 40.7048148 | 74.693407 | 57.699111 | -0.1232606 | 3.33 | -0.4626355 | -1.03 | patient | M | T | therapist |
| 59 | Vid12 | head | 37 | 18.2 | 18.6 | 108.6286296 | 188.052407 | 148.340519 | 0.5559584 | -0.47 | 0.0044762 | 3.40 | patient | M | T | therapist |
| 60 | Vid12 | torso | 14 | 6.7 | 7.2 | 1.7734444 | 358.397370 | 180.085407 | 0.3090221 | 5.00 | -0.2562361 | -1.27 | therapist | M | T | therapist |
| 61 | Vid12 | torso | 15 | 7.2 | 7.7 | 0.8166667 | 371.194074 | 186.005370 | 0.4409101 | -1.83 | 0.0002887 | 3.00 | patient | M | T | therapist |
| 62 | Vid12 | torso | 18 | 8.7 | 9.2 | 320.9877778 | 2464.706148 | 1392.846963 | 0.3517611 | -4.73 | -0.0250176 | 2.57 | patient | M | T | therapist |
| 63 | Vid12 | torso | 20 | 9.7 | 10.2 | 6.1234815 | 888.908000 | 447.515741 | 0.5322464 | 5.00 | -0.2055376 | -5.00 | therapist | M | T | therapist |
| 64 | Vid12 | torso | 26 | 12.7 | 13.2 | 2.2633333 | 988.699630 | 495.481481 | 0.1955578 | -5.00 | -0.6113441 | -0.03 | - | M | T | therapist |
| 65 | Vid12 | torso | 30 | 14.7 | 15.2 | 5.5341481 | 421.406037 | 213.470093 | 0.2378731 | 2.93 | -0.3924900 | -3.17 | patient | M | T | therapist |
| 66 | Vid12 | torso | 34 | 16.7 | 17.1 | 9.9744444 | 409.534778 | 209.754611 | 0.1788552 | 5.00 | -0.4428601 | -5.00 | patient | M | T | therapist |
| 67 | Vid12 | torso | 36 | 17.7 | 18.1 | 2.5555556 | 332.735741 | 167.645648 | 0.1740504 | 0.90 | -0.4614949 | -3.90 | patient | M | T | therapist |
| 68 | Vid12 | torso | 37 | 18.2 | 18.6 | 8.2277778 | 925.241222 | 466.734500 | 0.3323226 | 3.63 | -0.4131699 | -5.00 | patient | M | T | therapist |
| 69 | Vid12 | torso | 41 | 20.2 | 20.6 | 0.9211111 | 990.081111 | 495.501111 | 0.1831136 | 4.20 | -0.2593040 | -5.00 | patient | M | T | therapist |
| 70 | Vid12 | legs | 2 | 0.7 | 1.1 | 15.2748519 | 496.819333 | 256.047093 | 0.5184700 | 0.23 | -0.2939048 | -4.80 | therapist | M | T | therapist |
| 71 | Vid12 | legs | 15 | 7.2 | 7.7 | 7.7171481 | 41.441111 | 24.579130 | 0.4400608 | 4.33 | -0.1423323 | -1.97 | therapist | M | T | therapist |
| 72 | Vid12 | legs | 18 | 8.7 | 9.2 | 124.9799259 | 1090.034037 | 607.506982 | 0.4405708 | -4.63 | -0.0674658 | 2.83 | patient | M | T | therapist |
| 73 | Vid12 | legs | 22 | 10.7 | 11.2 | 7.8725185 | 62.274889 | 35.073704 | 0.1441920 | -0.37 | -0.4959877 | 4.87 | therapist | M | T | therapist |
| 74 | Vid12 | legs | 25 | 12.2 | 12.7 | 15.2701481 | 84.261370 | 49.765759 | 0.1595617 | 3.17 | -0.4700967 | -2.27 | patient | M | T | therapist |
| 75 | Vid12 | legs | 30 | 14.7 | 15.2 | 10.8367037 | 191.916037 | 101.376370 | 0.4240094 | 1.97 | -0.2931375 | -3.67 | therapist | M | T | therapist |
| 76 | Vid12 | legs | 32 | 15.7 | 16.1 | 14.0097037 | 522.104815 | 268.057259 | 0.1789326 | 3.37 | -0.1439088 | -2.17 | therapist | M | T | therapist |
| 77 | Vid12 | legs | 37 | 18.2 | 18.6 | 24.2930741 | 137.466667 | 80.879870 | 0.7838769 | 0.67 | 0.1411525 | -5.00 | therapist | M | T | therapist |
| 78 | Vid13 | head | 11 | 5.1 | 5.6 | 261.9122963 | 565.772259 | 413.842278 | 0.3710759 | 3.60 | -0.3776579 | -2.57 | patient | M | T | therapist |
| 79 | Vid13 | head | 19 | 9.1 | 9.6 | 387.0541852 | 278.519259 | 332.786722 | 0.1583350 | 2.60 | -0.1954282 | -1.97 | patient | M | T | patient |
| 80 | Vid13 | head | 32 | 15.6 | 16.1 | 395.3665556 | 857.440815 | 626.403685 | 0.4370837 | -4.77 | -0.2959015 | 1.33 | patient | M | T | therapist |
| 81 | Vid13 | head | 44 | 21.6 | 22.1 | 482.6377407 | 151.734741 | 317.186241 | 0.3417806 | 5.00 | -0.0776991 | 0.10 | therapist | M | T | patient |
| 82 | Vid13 | head | 45 | 22.1 | 22.6 | 756.7299259 | 191.992370 | 474.361148 | 0.4373760 | 5.00 | -0.0066648 | -5.00 | therapist | M | T | patient |
| 83 | Vid13 | head | 48 | 23.6 | 24.1 | 985.3780741 | 157.310593 | 571.344333 | 0.2433915 | 2.83 | -0.2661014 | -3.90 | patient | M | T | patient |
| 84 | Vid13 | head | 49 | 24.1 | 24.6 | 523.9215556 | 954.166889 | 739.044222 | 0.6283743 | -1.67 | -0.0485313 | -5.00 | patient | M | T | therapist |
| 85 | Vid13 | head | 50 | 24.6 | 25.1 | 686.6284074 | 381.620593 | 534.124500 | 0.5098080 | 3.03 | -0.5429019 | -3.33 | patient | M | T | patient |
| 86 | Vid13 | head | 51 | 25.1 | 25.6 | 439.2947037 | 120.412778 | 279.853741 | 0.3794879 | -0.80 | -0.2259002 | 3.97 | patient | M | T | patient |
| 87 | Vid13 | head | 53 | 26.1 | 26.6 | 309.4664444 | 1050.651630 | 680.059037 | -0.0940366 | -4.70 | -0.5071124 | 3.77 | therapist | M | T | therapist |
| 88 | Vid13 | head | 59 | 29.1 | 29.6 | 454.8356296 | 152.010296 | 303.422963 | 0.3371220 | 2.93 | -0.1691990 | -4.83 | therapist | M | T | patient |
| 89 | Vid13 | head | 60 | 29.6 | 30.1 | 336.7667037 | 277.538074 | 307.152389 | 0.3006635 | -2.50 | -0.2732497 | 0.77 | patient | M | T | patient |
| 90 | Vid13 | head | 63 | 31.1 | 31.6 | 249.9235185 | 761.230630 | 505.577074 | 0.5255779 | 5.00 | -0.3681299 | -0.80 | therapist | M | T | therapist |
| 91 | Vid13 | head | 71 | 35.1 | 35.6 | 302.4266667 | 223.640852 | 263.033759 | 0.4102939 | -3.63 | -0.2553675 | 0.97 | patient | M | T | patient |
| 92 | Vid13 | torso | 10 | 4.6 | 5.1 | 599.1977037 | 248.034370 | 423.616037 | 0.2759913 | -4.67 | -0.0903117 | 2.20 | patient | M | T | patient |
| 93 | Vid13 | torso | 11 | 5.1 | 5.6 | 660.0547037 | 1569.607630 | 1114.831167 | 0.4524641 | 4.60 | -0.4381613 | -3.80 | therapist | M | T | therapist |
| 94 | Vid13 | torso | 16 | 7.6 | 8.1 | 848.4194444 | 534.216704 | 691.318074 | 0.1797646 | -5.00 | -0.2070392 | 5.00 | therapist | M | T | patient |
| 95 | Vid13 | torso | 27 | 13.1 | 13.6 | 923.2403704 | 147.274037 | 535.257204 | 0.4186840 | -4.73 | -0.1236877 | 0.47 | patient | M | T | patient |
| 96 | Vid13 | torso | 32 | 15.6 | 16.1 | 936.4584815 | 1496.023000 | 1216.240741 | -0.1255075 | -3.83 | -0.4440629 | -1.77 | patient | M | T | therapist |
| 97 | Vid13 | torso | 33 | 16.1 | 16.6 | 514.0840741 | 415.483704 | 464.783889 | 0.6612846 | 2.50 | -0.0710969 | -5.00 | therapist | M | T | patient |
| 98 | Vid13 | torso | 40 | 19.6 | 20.1 | 378.5926667 | 1004.897370 | 691.745019 | 0.5015464 | -4.50 | -0.3343860 | 2.03 | patient | M | T | therapist |
| 99 | Vid13 | torso | 41 | 20.1 | 20.6 | 566.4460370 | 1364.098296 | 965.272167 | 0.2075263 | -4.93 | -0.3142328 | 3.00 | therapist | M | T | therapist |
| 100 | Vid13 | torso | 44 | 21.6 | 22.1 | 714.0878519 | 684.178259 | 699.133056 | 0.3637908 | -1.43 | -0.4429283 | 5.00 | therapist | M | T | - |
| 101 | Vid13 | torso | 45 | 22.1 | 22.6 | 472.8751852 | 981.205630 | 727.040407 | 0.1704541 | -1.60 | -0.3214655 | 3.87 | therapist | M | T | therapist |
| 102 | Vid13 | torso | 48 | 23.6 | 24.1 | 424.5036667 | 175.687519 | 300.095593 | 0.2938892 | 4.30 | -0.3465994 | -4.70 | patient | M | T | patient |
| 103 | Vid13 | torso | 52 | 25.6 | 26.1 | 563.6870741 | 306.028037 | 434.857556 | 0.3458331 | 0.83 | -0.3205007 | -4.33 | therapist | M | T | patient |
| 104 | Vid13 | torso | 56 | 27.6 | 28.1 | 378.0585926 | 525.396185 | 451.727389 | -0.2201436 | 3.47 | -0.5919735 | 0.00 | - | M | T | therapist |
| 105 | Vid13 | torso | 62 | 30.6 | 31.1 | 414.1849630 | 162.386630 | 288.285796 | 0.2315256 | -5.00 | -0.2593569 | 4.07 | therapist | M | T | patient |
| 106 | Vid13 | torso | 63 | 31.1 | 31.6 | 466.4118889 | 1263.534556 | 864.973222 | 0.4360671 | 3.27 | -0.2473951 | 0.00 | therapist | M | T | therapist |
| 107 | Vid13 | torso | 65 | 32.1 | 32.6 | 436.2532222 | 1008.706259 | 722.479741 | 0.1553360 | -4.93 | -0.4170829 | 5.00 | therapist | M | T | therapist |
| 108 | Vid13 | torso | 71 | 35.1 | 35.6 | 857.7250741 | 810.201889 | 833.963481 | 0.1331280 | 5.00 | -0.1639966 | 3.63 | therapist | M | T | - |
| 109 | Vid13 | torso | 72 | 35.6 | 36.1 | 614.2403704 | 142.263704 | 378.252037 | 0.4849478 | 5.00 | -0.1699308 | -5.00 | therapist | M | T | patient |
| 110 | Vid13 | legs | 1 | 0.1 | 0.6 | 7.3422593 | 65.824852 | 36.583556 | -0.1828231 | 5.00 | -0.3451694 | 1.13 | therapist | M | T | therapist |
| 111 | Vid13 | legs | 11 | 5.1 | 5.6 | 7.1933333 | 656.681037 | 331.937185 | 0.1949875 | 4.83 | -0.5596368 | -2.30 | patient | M | T | therapist |
| 112 | Vid13 | legs | 15 | 7.1 | 7.6 | 3.9247407 | 244.044741 | 123.984741 | 0.1811326 | -0.20 | -0.2947091 | 4.43 | therapist | M | T | therapist |
| 113 | Vid13 | legs | 16 | 7.6 | 8.1 | 3.3587037 | 72.579556 | 37.969130 | 0.3402429 | -4.73 | -0.1213844 | 5.00 | patient | M | T | therapist |
| 114 | Vid13 | legs | 26 | 12.6 | 13.1 | 225.8882963 | 106.621000 | 166.254648 | 0.5696387 | 0.57 | -0.2053297 | -5.00 | therapist | M | T | patient |
| 115 | Vid13 | legs | 32 | 15.6 | 16.1 | 140.7474444 | 698.465148 | 419.606296 | -0.0546641 | 5.00 | -0.3760175 | 0.73 | therapist | M | T | therapist |
| 116 | Vid13 | legs | 39 | 19.1 | 19.6 | 1.7076296 | 855.096593 | 428.402111 | 0.3341087 | -4.70 | 0.0001357 | -2.77 | patient | M | T | therapist |
| 117 | Vid13 | legs | 41 | 20.1 | 20.6 | 338.4622222 | 106.437185 | 222.449704 | 0.4730267 | -1.80 | -0.3364897 | 3.50 | patient | M | T | patient |
| 118 | Vid13 | legs | 49 | 24.1 | 24.6 | 7.1319259 | 888.862222 | 447.997074 | 0.1952205 | -4.67 | -0.2648584 | 2.53 | therapist | M | T | therapist |
| 119 | Vid13 | legs | 50 | 24.6 | 25.1 | 1.5613704 | 74.968037 | 38.264704 | 0.2257865 | 1.33 | -0.3352490 | -4.00 | patient | M | T | therapist |
| 120 | Vid13 | legs | 54 | 26.6 | 27.1 | 19.1122963 | 242.313481 | 130.712889 | 0.2700310 | 1.80 | -0.3899946 | -3.50 | patient | M | T | therapist |
| 121 | Vid13 | legs | 55 | 27.1 | 27.6 | 34.9595926 | 303.218519 | 169.089056 | 0.4595989 | -5.00 | -0.2370119 | 3.90 | patient | M | T | therapist |
| 122 | Vid13 | legs | 56 | 27.6 | 28.1 | 7.0484815 | 275.078482 | 141.063481 | -0.0512577 | 4.73 | -0.5262821 | -4.13 | patient | M | T | therapist |
| 123 | Vid13 | legs | 64 | 31.6 | 32.1 | 2.7600000 | 875.320037 | 439.040018 | 0.3345883 | 3.73 | 0.0601919 | -3.63 | therapist | M | T | therapist |
| 124 | Vid14 | head | 4 | 1.7 | 2.2 | 202.7807778 | 316.615407 | 259.698093 | 0.2590615 | -1.00 | -0.1702943 | 1.63 | patient | M | C | therapist |
| 125 | Vid14 | head | 15 | 7.2 | 7.7 | 194.1489259 | 237.576259 | 215.862593 | 0.4558548 | 5.00 | -0.4257656 | -5.00 | therapist | M | C | therapist |
| 126 | Vid14 | head | 21 | 10.2 | 10.7 | 256.1438148 | 559.104444 | 407.624130 | 0.3112057 | -1.53 | -0.2055317 | 5.00 | patient | M | C | therapist |
| 127 | Vid14 | head | 36 | 17.7 | 18.2 | 169.0188148 | 204.171630 | 186.595222 | 0.2555375 | 1.90 | -0.1522800 | 4.53 | therapist | M | C | therapist |
| 128 | Vid14 | head | 37 | 18.2 | 18.7 | 226.4766667 | 189.001815 | 207.739241 | 0.3018837 | 4.97 | -0.3610766 | -2.40 | patient | M | C | patient |
| 129 | Vid14 | head | 43 | 21.2 | 21.7 | 220.8315556 | 337.197593 | 279.014574 | 0.1323917 | 3.23 | -0.4571923 | 0.10 | - | M | C | therapist |
| 130 | Vid14 | head | 50 | 24.7 | 25.2 | 161.9198519 | 975.386185 | 568.653019 | 0.3750072 | 1.43 | -0.0643890 | 5.00 | therapist | M | C | therapist |
| 131 | Vid14 | head | 67 | 33.2 | 33.7 | 335.8197037 | 311.271259 | 323.545481 | 0.4171619 | -0.43 | -0.1259826 | -4.00 | patient | M | C | - |
| 132 | Vid14 | head | 74 | 36.7 | 37.2 | 251.5779630 | 640.583111 | 446.080537 | -0.0238960 | 4.63 | -0.6394736 | 0.27 | therapist | M | C | therapist |
| 133 | Vid14 | torso | 4 | 1.7 | 2.2 | 1353.8031481 | 546.274815 | 950.038981 | 0.3391364 | 4.40 | -0.6737235 | -4.70 | patient | M | C | patient |
| 134 | Vid14 | torso | 9 | 4.2 | 4.7 | 659.5689259 | 731.869148 | 695.719037 | -0.1885057 | 4.77 | -0.7278326 | 0.00 | - | M | C | - |
| 135 | Vid14 | torso | 15 | 7.2 | 7.7 | 931.0508148 | 709.542444 | 820.296630 | 0.2675262 | 4.03 | -0.0645814 | -2.53 | therapist | M | C | patient |
| 136 | Vid14 | torso | 21 | 10.2 | 10.7 | 822.5072593 | 1517.077926 | 1169.792593 | 0.4836177 | -5.00 | -0.0965876 | 5.00 | patient | M | C | therapist |
| 137 | Vid14 | torso | 34 | 16.7 | 17.2 | 1814.7471111 | 624.169667 | 1219.458389 | 0.2540544 | 5.00 | -0.3705708 | 0.73 | therapist | M | C | patient |
| 138 | Vid14 | torso | 37 | 18.2 | 18.7 | 1580.3406667 | 499.718407 | 1040.029537 | 0.3332301 | 4.77 | -0.4667808 | -2.47 | patient | M | C | patient |
| 139 | Vid14 | torso | 48 | 23.7 | 24.2 | 894.4833333 | 557.797556 | 726.140444 | 0.6471778 | 0.93 | -0.2467040 | -4.53 | therapist | M | C | patient |
| 140 | Vid14 | torso | 50 | 24.7 | 25.2 | 797.2333704 | 1984.092444 | 1390.662907 | 0.3800121 | -5.00 | -0.4453744 | 5.00 | therapist | M | C | therapist |
| 141 | Vid14 | torso | 57 | 28.2 | 28.7 | 879.1004074 | 449.033593 | 664.067000 | -0.1907166 | -5.00 | -0.7431909 | 4.30 | therapist | M | C | patient |
| 142 | Vid14 | torso | 74 | 36.7 | 37.2 | 854.8682963 | 1760.581370 | 1307.724833 | -0.2347998 | -5.00 | -0.7212761 | 0.00 | - | M | C | therapist |
| 143 | Vid14 | legs | 9 | 4.2 | 4.7 | 11.5132222 | 46.655926 | 29.084574 | -0.1270804 | -5.00 | -0.5531998 | -0.60 | patient | M | C | therapist |
| 144 | Vid14 | legs | 10 | 4.7 | 5.2 | 16.3742963 | 47.298000 | 31.836148 | 0.2662933 | 1.70 | -0.2129624 | -2.60 | therapist | M | C | therapist |
| 145 | Vid14 | legs | 11 | 5.2 | 5.7 | 27.5990741 | 121.761037 | 74.680056 | 0.2576573 | -0.20 | -0.0613053 | 2.27 | patient | M | C | therapist |
| 146 | Vid14 | legs | 15 | 7.2 | 7.7 | 22.6731111 | 148.623926 | 85.648518 | 0.1423847 | 1.27 | -0.1907959 | 3.37 | therapist | M | C | therapist |
| 147 | Vid14 | legs | 17 | 8.2 | 8.7 | 32.4385556 | 60.568889 | 46.503722 | 0.3301410 | 2.90 | -0.0933343 | -4.03 | therapist | M | C | therapist |
| 148 | Vid14 | legs | 22 | 10.7 | 11.2 | 21.7195185 | 433.085444 | 227.402481 | 0.3247282 | 3.23 | -0.1681243 | -2.43 | therapist | M | C | therapist |
| 149 | Vid14 | legs | 27 | 13.2 | 13.7 | 22.1550000 | 39.242852 | 30.698926 | 0.3494922 | -0.67 | -0.3279029 | 3.57 | patient | M | C | therapist |
| 150 | Vid14 | legs | 40 | 19.7 | 20.2 | 14.2920000 | 56.843482 | 35.567741 | -0.0716238 | -5.00 | -0.7374916 | -0.10 | - | M | C | therapist |
| 151 | Vid14 | legs | 41 | 20.2 | 20.7 | 17.2036296 | 69.242222 | 43.222926 | 0.3151360 | 1.37 | -0.0234160 | -0.90 | therapist | M | C | therapist |
| 152 | Vid14 | legs | 43 | 21.2 | 21.7 | 54.5089630 | 97.498815 | 76.003889 | 0.2744260 | 2.73 | -0.4501432 | -4.37 | patient | M | C | therapist |
| 153 | Vid14 | legs | 49 | 24.2 | 24.7 | 45.7641111 | 44.552518 | 45.158315 | 0.2441701 | -1.93 | -0.2361833 | -3.83 | patient | M | C | - |
| 154 | Vid14 | legs | 50 | 24.7 | 25.2 | 15.1902222 | 929.643778 | 472.417000 | 0.5916682 | -2.93 | -0.2323214 | 4.70 | patient | M | C | therapist |
| 155 | Vid14 | legs | 51 | 25.2 | 25.7 | 17.5953333 | 37.276482 | 27.435907 | -0.2927326 | 5.00 | -0.5070388 | -0.73 | patient | M | C | therapist |
| 156 | Vid14 | legs | 56 | 27.7 | 28.2 | 11.1000000 | 100.661630 | 55.880815 | 0.3277877 | 3.33 | -0.2181729 | -4.97 | therapist | M | C | therapist |
| 157 | Vid14 | legs | 63 | 31.2 | 31.7 | 19.0422222 | 62.959074 | 41.000648 | -0.1264249 | -5.00 | -0.4620311 | -0.03 | - | M | C | therapist |
| 158 | Vid14 | legs | 67 | 33.2 | 33.7 | 18.2155556 | 84.870926 | 51.543241 | 0.4510421 | 5.00 | -0.6511279 | -5.00 | patient | M | C | therapist |
| 159 | Vid15 | head | 2 | 0.6 | 1.1 | 263.0577037 | 452.480407 | 357.769056 | 0.5291391 | -0.33 | -0.1368739 | -5.00 | patient | M | C | therapist |
| 160 | Vid15 | head | 13 | 6.1 | 6.6 | 263.6895185 | 218.973630 | 241.331574 | 0.2896573 | 3.47 | -0.2344294 | -3.03 | therapist | M | C | patient |
| 161 | Vid15 | head | 19 | 9.1 | 9.6 | 429.6844815 | 768.153111 | 598.918796 | 0.1980332 | -3.60 | -0.3101794 | 3.77 | therapist | M | C | therapist |
| 162 | Vid15 | head | 27 | 13.1 | 13.6 | 127.1778148 | 166.957518 | 147.067667 | 0.2655931 | 3.97 | -0.1273488 | -2.93 | therapist | M | C | therapist |
| 163 | Vid15 | head | 32 | 15.6 | 16.1 | 122.6113704 | 254.184407 | 188.397889 | 0.3715843 | -2.63 | -0.1666089 | 2.37 | patient | M | C | therapist |
| 164 | Vid15 | head | 33 | 16.1 | 16.6 | 146.4325185 | 245.414222 | 195.923370 | 0.3614707 | 2.33 | -0.2268927 | -5.00 | therapist | M | C | therapist |
| 165 | Vid15 | head | 38 | 18.6 | 19.1 | 94.3000370 | 152.784444 | 123.542241 | 0.1640530 | 0.57 | -0.1040410 | 4.50 | therapist | M | C | therapist |
| 166 | Vid15 | head | 42 | 20.6 | 21.1 | 149.8319630 | 256.491259 | 203.161611 | 0.2665435 | -4.07 | -0.4937380 | 1.97 | therapist | M | C | therapist |
| 167 | Vid15 | head | 43 | 21.1 | 21.6 | 141.7734815 | 231.923963 | 186.848722 | 0.2501002 | -2.83 | -0.4358636 | 5.00 | therapist | M | C | therapist |
| 168 | Vid15 | head | 44 | 21.6 | 22.1 | 117.7308519 | 260.987407 | 189.359130 | 0.2128390 | -1.50 | -0.2472032 | -4.27 | patient | M | C | therapist |
| 169 | Vid15 | head | 52 | 25.6 | 26.1 | 98.4485926 | 427.638852 | 263.043722 | 0.1391156 | 3.77 | -0.5071514 | -5.00 | patient | M | C | therapist |
| 170 | Vid15 | head | 54 | 26.6 | 27.1 | 129.9755556 | 165.478296 | 147.726926 | 0.2292985 | -1.53 | -0.2796406 | 1.37 | therapist | M | C | therapist |
| 171 | Vid15 | head | 65 | 32.1 | 32.6 | 99.5060370 | 414.066074 | 256.786056 | 0.4959223 | -0.90 | -0.1025839 | 4.27 | patient | M | C | therapist |
| 172 | Vid15 | head | 67 | 33.1 | 33.6 | 211.6078889 | 379.012667 | 295.310278 | 0.3401151 | -3.87 | -0.3957903 | 1.80 | therapist | M | C | therapist |
| 173 | Vid15 | head | 70 | 34.6 | 35.1 | 203.6437778 | 253.243259 | 228.443519 | 0.2269133 | -4.17 | -0.2543077 | 0.90 | therapist | M | C | therapist |
| 174 | Vid15 | head | 71 | 35.1 | 35.6 | 217.3847407 | 161.297815 | 189.341278 | 0.0698942 | 5.00 | -0.3942704 | 0.93 | therapist | M | C | patient |
| 175 | Vid15 | head | 78 | 38.6 | 39.1 | 294.4109630 | 359.740148 | 327.075556 | 0.4710703 | 5.00 | -0.5828774 | -4.93 | patient | M | C | therapist |
| 176 | Vid15 | head | 87 | 43.1 | 43.6 | 100.6585185 | 390.804630 | 245.731574 | 0.3161129 | 2.67 | -0.4057850 | -4.87 | patient | M | C | therapist |
| 177 | Vid15 | torso | 3 | 1.1 | 1.6 | 1098.5120741 | 416.944370 | 757.728222 | 0.4243427 | 3.17 | -0.0387873 | -0.33 | therapist | M | C | patient |
| 178 | Vid15 | torso | 19 | 9.1 | 9.6 | 1293.8696667 | 2152.791926 | 1723.330796 | -0.1641798 | -5.00 | -0.5370561 | 3.47 | therapist | M | C | therapist |
| 179 | Vid15 | torso | 32 | 15.6 | 16.1 | 938.2163333 | 620.112963 | 779.164648 | 0.3249552 | -4.23 | -0.5638322 | 2.73 | therapist | M | C | patient |
| 180 | Vid15 | torso | 34 | 16.6 | 17.1 | 1101.5838519 | 664.894259 | 883.239056 | -0.1082979 | 5.00 | -0.6334793 | -2.10 | patient | M | C | patient |
| 181 | Vid15 | torso | 35 | 17.1 | 17.6 | 1016.9481111 | 2438.701000 | 1727.824556 | 0.0064170 | -3.13 | -0.2828975 | 4.30 | therapist | M | C | therapist |
| 182 | Vid15 | torso | 42 | 20.6 | 21.1 | 955.7765185 | 439.302037 | 697.539278 | 0.4983755 | -4.87 | -0.2439540 | 1.53 | patient | M | C | patient |
| 183 | Vid15 | torso | 43 | 21.1 | 21.6 | 799.0947778 | 745.510185 | 772.302481 | 0.2777679 | 3.00 | -0.1647495 | 0.60 | therapist | M | C | - |
| 184 | Vid15 | torso | 51 | 25.1 | 25.6 | 1071.2490000 | 1225.272741 | 1148.260870 | 0.0577154 | 1.57 | -0.5393377 | -4.80 | patient | M | C | therapist |
| 185 | Vid15 | torso | 52 | 25.6 | 26.1 | 1050.6142222 | 1102.614185 | 1076.614204 | 0.5039833 | -4.50 | -0.0251755 | 5.00 | patient | M | C | - |
| 186 | Vid15 | torso | 53 | 26.1 | 26.6 | 1147.6919259 | 412.655704 | 780.173815 | 0.1574034 | 4.07 | -0.1864725 | 2.33 | therapist | M | C | patient |
| 187 | Vid15 | torso | 55 | 27.1 | 27.6 | 944.7733333 | 560.520111 | 752.646722 | 0.4087491 | -3.57 | -0.2295973 | 2.20 | patient | M | C | patient |
| 188 | Vid15 | torso | 60 | 29.6 | 30.1 | 674.1354815 | 1783.081037 | 1228.608259 | 0.2881871 | 3.57 | -0.4541248 | -5.00 | patient | M | C | therapist |
| 189 | Vid15 | torso | 64 | 31.6 | 32.1 | 1616.7411481 | 810.574556 | 1213.657852 | 0.4979011 | 0.90 | -0.0235001 | -3.57 | therapist | M | C | patient |
| 190 | Vid15 | torso | 70 | 34.6 | 35.1 | 1140.2090741 | 929.204259 | 1034.706667 | 0.3996359 | 5.00 | -0.2386984 | 1.70 | therapist | M | C | patient |
| 191 | Vid15 | torso | 87 | 43.1 | 43.6 | 677.0901852 | 804.234889 | 740.662537 | -0.0273347 | -2.80 | -0.2716500 | -5.00 | patient | M | C | therapist |
| 192 | Vid15 | legs | 2 | 0.6 | 1.1 | 28.7184815 | 90.089222 | 59.403852 | 0.1513680 | -0.13 | -0.4263911 | -3.57 | patient | M | C | therapist |
| 193 | Vid15 | legs | 13 | 6.1 | 6.6 | 71.9345926 | 66.181148 | 69.057870 | 0.2757384 | 0.27 | -0.1105744 | 4.43 | therapist | M | C | - |
| 194 | Vid15 | legs | 35 | 17.1 | 17.6 | 27.3745926 | 1033.773889 | 530.574241 | 0.0468828 | -4.47 | -0.4074272 | 4.33 | therapist | M | C | therapist |
| 195 | Vid15 | legs | 41 | 20.1 | 20.6 | 84.1106667 | 558.912593 | 321.511630 | 0.2897270 | -3.57 | -0.3116340 | 4.90 | therapist | M | C | therapist |
| 196 | Vid15 | legs | 51 | 25.1 | 25.6 | 32.1903333 | 501.492037 | 266.841185 | 0.0649923 | 0.97 | -0.3489814 | 3.03 | therapist | M | C | therapist |
| 197 | Vid15 | legs | 52 | 25.6 | 26.1 | 29.4778519 | 101.130074 | 65.303963 | 0.4394986 | 1.20 | -0.2102471 | 5.00 | therapist | M | C | therapist |
| 198 | Vid15 | legs | 53 | 26.1 | 26.6 | 67.5990741 | 33.365074 | 50.482074 | 0.4226598 | -2.70 | 0.0582335 | 2.23 | patient | M | C | patient |
| 199 | Vid15 | legs | 55 | 27.1 | 27.6 | 32.0922222 | 110.196815 | 71.144519 | 0.4205619 | -5.00 | -0.2575643 | 4.00 | patient | M | C | therapist |
| 200 | Vid15 | legs | 70 | 34.6 | 35.1 | 51.4518148 | 86.462444 | 68.957130 | 0.1415316 | 5.00 | -0.3419886 | 1.17 | therapist | M | C | therapist |
| 201 | Vid16 | head | 17 | 8.1 | 8.6 | 484.0206667 | 303.717556 | 393.869111 | 0.3892555 | -4.77 | -0.2961479 | 4.13 | patient | M | T | patient |
| 202 | Vid16 | head | 18 | 8.6 | 9.1 | 229.1631852 | 371.923963 | 300.543574 | 0.2105937 | 4.27 | -0.5774611 | 1.30 | therapist | M | T | therapist |
| 203 | Vid16 | head | 19 | 9.1 | 9.6 | 268.3163333 | 780.238259 | 524.277296 | 0.3393936 | 3.90 | -0.5365877 | -3.90 | patient | M | T | therapist |
| 204 | Vid16 | head | 23 | 11.1 | 11.6 | 191.6738889 | 384.587667 | 288.130778 | 0.3966963 | 4.73 | -0.3210115 | -5.00 | therapist | M | T | therapist |
| 205 | Vid16 | head | 27 | 13.1 | 13.6 | 429.3932222 | 476.854000 | 453.123611 | 0.2480474 | 5.00 | -0.4611890 | -1.90 | patient | M | T | - |
| 206 | Vid16 | head | 28 | 13.6 | 14.1 | 371.3880370 | 381.194185 | 376.291111 | 0.2692152 | -5.00 | -0.4106771 | -0.07 | - | M | T | - |
| 207 | Vid16 | head | 29 | 14.1 | 14.6 | 268.7505185 | 314.285222 | 291.517870 | 0.3905073 | 1.47 | -0.3540286 | -1.90 | therapist | M | T | therapist |
| 208 | Vid16 | head | 31 | 15.1 | 15.6 | 233.6899630 | 1204.807963 | 719.248963 | 0.1805522 | -5.00 | -0.2287396 | 5.00 | therapist | M | T | therapist |
| 209 | Vid16 | head | 39 | 19.1 | 19.6 | 213.2716296 | 647.035667 | 430.153648 | 0.1866544 | -0.90 | -0.2814656 | -2.77 | patient | M | T | therapist |
| 210 | Vid16 | head | 42 | 20.6 | 21.1 | 219.8109630 | 1105.356889 | 662.583926 | 0.3948073 | 4.50 | -0.1940182 | -5.00 | therapist | M | T | therapist |
| 211 | Vid16 | head | 53 | 26.1 | 26.6 | 238.0573704 | 627.457778 | 432.757574 | 0.3637271 | -0.97 | -0.0884895 | -3.17 | patient | M | T | therapist |
| 212 | Vid16 | head | 55 | 27.1 | 27.6 | 404.8231111 | 506.469815 | 455.646463 | 0.2796893 | 4.17 | -0.4057222 | 0.00 | - | M | T | therapist |
| 213 | Vid16 | head | 61 | 30.1 | 30.6 | 282.6555926 | 303.012630 | 292.834111 | 0.1380478 | -4.77 | -0.3686051 | 0.40 | therapist | M | T | - |
| 214 | Vid16 | head | 66 | 32.6 | 33.1 | 254.9712963 | 582.521407 | 418.746352 | 0.4390087 | 1.87 | -0.0912329 | 3.40 | therapist | M | T | therapist |
| 215 | Vid16 | torso | 10 | 4.6 | 5.1 | 1247.3211852 | 1316.121333 | 1281.721259 | 0.2542523 | 5.00 | -0.6117375 | 0.90 | therapist | M | T | - |
| 216 | Vid16 | torso | 19 | 9.1 | 9.6 | 686.7501481 | 1957.640926 | 1322.195537 | 0.3888210 | 3.83 | -0.5706759 | -3.80 | patient | M | T | therapist |
| 217 | Vid16 | torso | 21 | 10.1 | 10.6 | 1166.3786296 | 944.657556 | 1055.518093 | 0.3825870 | 3.87 | -0.3183055 | 1.67 | therapist | M | T | patient |
| 218 | Vid16 | torso | 23 | 11.1 | 11.6 | 1095.3084074 | 1743.970519 | 1419.639463 | 0.1579090 | 0.90 | -0.1730340 | -0.47 | patient | M | T | therapist |
| 219 | Vid16 | torso | 27 | 13.1 | 13.6 | 1356.8446296 | 1070.260296 | 1213.552463 | 0.0750756 | 5.00 | -0.3692504 | -0.30 | patient | M | T | patient |
| 220 | Vid16 | torso | 28 | 13.6 | 14.1 | 1649.6260741 | 781.341852 | 1215.483963 | 0.1841161 | 1.97 | -0.1476482 | 4.67 | therapist | M | T | patient |
| 221 | Vid16 | torso | 31 | 15.1 | 15.6 | 723.9043704 | 1650.276000 | 1187.090185 | 0.2870716 | -0.27 | -0.2938873 | 4.67 | therapist | M | T | therapist |
| 222 | Vid16 | torso | 39 | 19.1 | 19.6 | 1880.7013333 | 1880.957741 | 1880.829537 | 0.1400741 | 1.60 | -0.2885774 | 0.20 | therapist | M | T | - |
| 223 | Vid16 | torso | 41 | 20.1 | 20.6 | 1349.3813333 | 739.108963 | 1044.245148 | 0.3799498 | -1.37 | -0.6490833 | 4.00 | therapist | M | T | patient |
| 224 | Vid16 | torso | 43 | 21.1 | 21.6 | 808.2445556 | 2154.658148 | 1481.451352 | 0.1165658 | -3.40 | -0.0805437 | -0.03 | patient | M | T | therapist |
| 225 | Vid16 | torso | 55 | 27.1 | 27.6 | 1728.0275556 | 1170.734259 | 1449.380907 | 0.1422503 | -0.93 | -0.4357598 | -3.03 | patient | M | T | patient |
| 226 | Vid16 | torso | 66 | 32.6 | 33.1 | 1837.4849630 | 2295.282852 | 2066.383907 | 0.4519891 | 1.63 | 0.0104833 | 3.40 | therapist | M | T | therapist |
| 227 | Vid16 | legs | 17 | 8.1 | 8.6 | 29.2171111 | 206.995333 | 118.106222 | 0.2960954 | -3.93 | -0.2773247 | 4.93 | patient | M | T | therapist |
| 228 | Vid16 | legs | 18 | 8.6 | 9.1 | 44.7110741 | 245.089741 | 144.900407 | 0.3823180 | 4.73 | 0.0485933 | -1.67 | therapist | M | T | therapist |
| 229 | Vid16 | legs | 19 | 9.1 | 9.6 | 25.7216296 | 501.264333 | 263.492981 | 0.1877497 | 1.13 | -0.2510216 | -2.80 | patient | M | T | therapist |
| 230 | Vid16 | legs | 22 | 10.6 | 11.1 | 45.0753333 | 157.551481 | 101.313407 | 0.2505965 | 4.27 | -0.2550823 | -5.00 | patient | M | T | therapist |
| 231 | Vid16 | legs | 23 | 11.1 | 11.6 | 85.2432593 | 141.863333 | 113.553296 | -0.0028639 | -5.00 | -0.4976827 | 0.20 | therapist | M | T | therapist |
| 232 | Vid16 | legs | 25 | 12.1 | 12.6 | 18.7525926 | 357.370222 | 188.061407 | 0.4226912 | -2.93 | -0.2407159 | 5.00 | patient | M | T | therapist |
| 233 | Vid16 | legs | 42 | 20.6 | 21.1 | 20.1969259 | 582.291444 | 301.244185 | 0.2790851 | 3.83 | -0.2598270 | -2.07 | therapist | M | T | therapist |
| 234 | Vid16 | legs | 55 | 27.1 | 27.6 | 24.1397407 | 412.944481 | 218.542111 | 0.1570466 | 2.67 | -0.5129154 | -2.53 | patient | M | T | therapist |
| 235 | Vid16 | legs | 56 | 27.6 | 28.1 | 56.9378148 | 157.224333 | 107.081074 | 0.5282788 | -2.57 | -0.3093484 | 3.90 | patient | M | T | therapist |
| 236 | Vid16 | legs | 57 | 28.1 | 28.6 | 22.8609259 | 194.368074 | 108.614500 | 0.0845862 | -3.77 | -0.4462763 | 1.17 | therapist | M | T | therapist |
| 237 | Vid16 | legs | 58 | 28.6 | 29.1 | 44.7200741 | 133.136889 | 88.928482 | -0.0943192 | -4.57 | -0.6047888 | 0.53 | therapist | M | T | therapist |
| 238 | Vid16 | legs | 67 | 33.1 | 33.6 | 35.0462593 | 141.280000 | 88.163130 | 0.4209150 | 2.53 | -0.1653202 | -1.33 | therapist | M | T | therapist |
| 239 | Vid16 | legs | 71 | 35.1 | 35.6 | 40.3005926 | 141.733926 | 91.017259 | -0.0276471 | 1.33 | -0.4491665 | -3.40 | patient | M | T | therapist |
| 240 | Vid17 | head | 1 | 0.1 | 0.6 | 134.3249630 | 526.134185 | 330.229574 | 0.1181927 | 3.03 | -0.2713892 | -0.90 | patient | M | C | therapist |
| 241 | Vid17 | head | 12 | 5.6 | 6.1 | 173.5549630 | 853.136074 | 513.345519 | 0.3562222 | 5.00 | -0.1923694 | -5.00 | therapist | M | C | therapist |
| 242 | Vid17 | head | 17 | 8.1 | 8.6 | 299.8582222 | 365.444333 | 332.651278 | 0.0040591 | 3.03 | -0.4898230 | -0.07 | - | M | C | therapist |
| 243 | Vid17 | head | 21 | 10.1 | 10.6 | 218.2717037 | 639.387185 | 428.829444 | -0.2571117 | -5.00 | -0.6519285 | 0.00 | - | M | C | therapist |
| 244 | Vid17 | head | 26 | 12.6 | 13.1 | 591.5498148 | 974.510926 | 783.030370 | -0.1499340 | 5.00 | -0.4501177 | 1.33 | therapist | M | C | therapist |
| 245 | Vid17 | head | 33 | 16.1 | 16.6 | 125.0025556 | 502.656296 | 313.829426 | 0.2424178 | 3.53 | 0.0730464 | -2.13 | therapist | M | C | therapist |
| 246 | Vid17 | head | 34 | 16.6 | 17.1 | 146.5071481 | 446.180148 | 296.343648 | 0.2657180 | -3.27 | -0.6026202 | 4.97 | therapist | M | C | therapist |
| 247 | Vid17 | head | 35 | 17.1 | 17.6 | 144.4886667 | 554.706444 | 349.597556 | 0.0790304 | -0.73 | -0.4541092 | -3.93 | patient | M | C | therapist |
| 248 | Vid17 | head | 43 | 21.1 | 21.6 | 341.1239259 | 546.810518 | 443.967222 | 0.2928439 | 0.97 | -0.3327260 | -3.53 | patient | M | C | therapist |
| 249 | Vid17 | head | 46 | 22.6 | 23.1 | 292.1080370 | 344.427296 | 318.267667 | 0.3616241 | 3.73 | -0.1563060 | 0.17 | therapist | M | C | therapist |
| 250 | Vid17 | head | 47 | 23.1 | 23.6 | 206.2620741 | 302.571704 | 254.416889 | 0.2722494 | -3.43 | -0.4497127 | 0.00 | - | M | C | therapist |
| 251 | Vid17 | head | 51 | 25.1 | 25.6 | 129.8846667 | 419.525556 | 274.705111 | 0.4249005 | 1.93 | -0.4477618 | -4.23 | patient | M | C | therapist |
| 252 | Vid17 | torso | 1 | 0.1 | 0.6 | 43.4773333 | 1675.638000 | 859.557667 | 0.0497937 | -4.17 | -0.2682826 | -2.30 | patient | M | C | therapist |
| 253 | Vid17 | torso | 9 | 4.1 | 4.6 | 404.5247778 | 1754.715556 | 1079.620167 | 0.1340899 | 4.90 | -0.5220324 | -2.03 | patient | M | C | therapist |
| 254 | Vid17 | torso | 12 | 5.6 | 6.1 | 1107.6060370 | 2125.266667 | 1616.436352 | 0.4187600 | -0.17 | -0.1450875 | 4.47 | patient | M | C | therapist |
| 255 | Vid17 | torso | 21 | 10.1 | 10.6 | 29.9968148 | 1893.120593 | 961.558704 | -0.0257830 | -5.00 | -0.6021433 | 3.43 | therapist | M | C | therapist |
| 256 | Vid17 | torso | 22 | 10.6 | 11.1 | 22.4682222 | 864.364148 | 443.416185 | 0.1944001 | -5.00 | -0.4388475 | -1.13 | patient | M | C | therapist |
| 257 | Vid17 | torso | 25 | 12.1 | 12.6 | 68.6520000 | 903.781370 | 486.216685 | 0.3270130 | -5.00 | -0.3677073 | 0.60 | therapist | M | C | therapist |
| 258 | Vid17 | torso | 26 | 12.6 | 13.1 | 2668.3639630 | 2525.151333 | 2596.757648 | -0.1303479 | 3.70 | -0.2877381 | 2.07 | therapist | M | C | - |
| 259 | Vid17 | torso | 43 | 21.1 | 21.6 | 1817.1485556 | 1485.623778 | 1651.386167 | 0.4501303 | 1.93 | -0.2300641 | -2.87 | therapist | M | C | patient |
| 260 | Vid17 | torso | 49 | 24.1 | 24.6 | 17.1111111 | 901.084778 | 459.097944 | 0.2247396 | 1.93 | -0.1350063 | 3.40 | therapist | M | C | therapist |
| 261 | Vid17 | torso | 51 | 25.1 | 25.6 | 22.8345926 | 1435.560704 | 729.197648 | 0.3784708 | 2.50 | -0.4188585 | -2.73 | patient | M | C | therapist |
| 262 | Vid17 | legs | 9 | 4.1 | 4.6 | 9.0455556 | 1833.779111 | 921.412333 | 0.0410409 | -4.33 | -0.2974434 | 2.70 | therapist | M | C | therapist |
| 263 | Vid17 | legs | 18 | 8.6 | 9.1 | 0.0022222 | 518.358778 | 259.180500 | 0.2108973 | 0.50 | -0.2666987 | -4.53 | patient | M | C | therapist |
| 264 | Vid17 | legs | 19 | 9.1 | 9.6 | 0.0022222 | 474.691444 | 237.346833 | 0.2660032 | -2.33 | -0.2794132 | 1.23 | therapist | M | C | therapist |
| 265 | Vid17 | legs | 20 | 9.6 | 10.1 | 2.7966667 | 400.217518 | 201.507093 | 0.2567168 | 3.30 | -0.3089366 | -1.63 | patient | M | C | therapist |
| 266 | Vid17 | legs | 21 | 10.1 | 10.6 | 11.1100370 | 1695.801259 | 853.455648 | 0.4327796 | -4.97 | -0.2159309 | 4.33 | patient | M | C | therapist |
| 267 | Vid17 | legs | 26 | 12.6 | 13.1 | 2.0566667 | 1324.310296 | 663.183481 | 0.2509240 | -3.07 | -0.2379130 | 2.43 | patient | M | C | therapist |
| 268 | Vid17 | legs | 29 | 14.1 | 14.6 | 0.2277778 | 1188.364889 | 594.296333 | 0.3220156 | -0.80 | -0.0271604 | -5.00 | patient | M | C | therapist |
| 269 | Vid17 | legs | 43 | 21.1 | 21.6 | 5.9977778 | 937.050518 | 471.524148 | 0.5800049 | 2.10 | 0.0795301 | 4.73 | therapist | M | C | therapist |
| 270 | Vid18 | head | 1 | 0.2 | 0.7 | 52.4931111 | 403.244667 | 227.868889 | 0.3993555 | -4.90 | -0.3507063 | 5.00 | patient | H | C | therapist |
| 271 | Vid18 | head | 2 | 0.7 | 1.2 | 117.3235556 | 311.900370 | 214.611963 | 0.0271996 | 3.03 | -0.2786643 | -2.03 | patient | H | C | therapist |
| 272 | Vid18 | head | 4 | 1.7 | 2.2 | 128.3158519 | 92.792889 | 110.554370 | 0.0353994 | -5.00 | -0.3886883 | -1.03 | patient | H | C | patient |
| 273 | Vid18 | head | 18 | 8.7 | 9.2 | 38.5358519 | 108.145741 | 73.340796 | -0.1696387 | 4.53 | -0.7398582 | 0.30 | therapist | H | C | therapist |
| 274 | Vid18 | head | 27 | 13.2 | 13.7 | 132.9374815 | 113.188296 | 123.062889 | 0.3891193 | 1.87 | -0.0946624 | -2.77 | therapist | H | C | patient |
| 275 | Vid18 | head | 28 | 13.7 | 14.2 | 73.1327407 | 88.622963 | 80.877852 | 0.2642198 | -1.90 | -0.4688576 | 1.90 | therapist | H | C | therapist |
| 276 | Vid18 | head | 29 | 14.2 | 14.7 | 13.5668519 | 114.763889 | 64.165370 | -0.0539200 | -5.00 | -0.5487283 | -1.37 | patient | H | C | therapist |
| 277 | Vid18 | head | 32 | 15.7 | 16.2 | 106.5522222 | 115.279370 | 110.915796 | 0.2750600 | 4.70 | -0.1601203 | -2.60 | therapist | H | C | - |
| 278 | Vid18 | head | 35 | 17.2 | 17.7 | 13.7766667 | 94.214778 | 53.995722 | 0.2628123 | 2.77 | -0.2584925 | -3.63 | therapist | H | C | therapist |
| 279 | Vid18 | head | 41 | 20.2 | 20.7 | 17.5723704 | 113.561556 | 65.566963 | 0.3642851 | 3.13 | -0.4430419 | -0.17 | patient | H | C | therapist |
| 280 | Vid18 | head | 42 | 20.7 | 21.2 | 33.8913333 | 975.087185 | 504.489259 | 0.2951952 | 5.00 | -0.1979854 | -3.40 | therapist | H | C | therapist |
| 281 | Vid18 | head | 49 | 24.2 | 24.7 | 123.8512963 | 104.367889 | 114.109593 | -0.0135225 | -0.87 | -0.3148681 | 2.20 | therapist | H | C | patient |
| 282 | Vid18 | head | 57 | 28.2 | 28.7 | 74.1555926 | 513.417074 | 293.786333 | 0.2775768 | -4.97 | -0.3600965 | 2.70 | therapist | H | C | therapist |
| 283 | Vid18 | head | 58 | 28.7 | 29.2 | 77.8444074 | 175.116741 | 126.480574 | -0.0853923 | 3.50 | -0.3982212 | -4.57 | patient | H | C | therapist |
| 284 | Vid18 | head | 61 | 30.2 | 30.7 | 15.5545185 | 150.958704 | 83.256611 | 0.4515088 | -2.10 | 0.2420637 | -5.00 | patient | H | C | therapist |
| 285 | Vid18 | head | 64 | 31.7 | 32.2 | 12.4022222 | 505.201296 | 258.801759 | 0.4466733 | 0.23 | -0.1546082 | 4.83 | therapist | H | C | therapist |
| 286 | Vid18 | head | 68 | 33.7 | 34.2 | 234.2854815 | 132.645037 | 183.465259 | 0.3856650 | -0.63 | -0.1020687 | -5.00 | patient | H | C | patient |
| 287 | Vid18 | head | 73 | 36.2 | 36.7 | 266.6222222 | 1450.226037 | 858.424130 | 0.4957735 | -3.50 | -0.2923364 | 4.87 | patient | H | C | therapist |
| 288 | Vid18 | torso | 2 | 0.7 | 1.2 | 36.2766667 | 329.391815 | 182.834241 | -0.0205859 | -5.00 | -0.5536480 | 2.97 | therapist | H | C | therapist |
| 289 | Vid18 | torso | 8 | 3.7 | 4.2 | 12.4317037 | 477.887296 | 245.159500 | 0.0153787 | 2.37 | -0.3757024 | 0.63 | therapist | H | C | therapist |
| 290 | Vid18 | torso | 11 | 5.2 | 5.7 | 35.9659259 | 402.939889 | 219.452907 | 0.3757757 | 5.00 | -0.4065116 | -2.90 | patient | H | C | therapist |
| 291 | Vid18 | torso | 28 | 13.7 | 14.2 | 14.3952963 | 467.845444 | 241.120370 | 0.3119445 | -1.60 | -0.2103779 | 4.57 | patient | H | C | therapist |
| 292 | Vid18 | torso | 32 | 15.7 | 16.2 | 23.1754074 | 412.321482 | 217.748444 | 0.3208294 | -0.40 | -0.1616104 | 3.27 | patient | H | C | therapist |
| 293 | Vid18 | torso | 33 | 16.2 | 16.7 | 12.4333333 | 2287.037815 | 1149.735574 | 0.6758999 | 1.10 | 0.1087865 | 4.57 | therapist | H | C | therapist |
| 294 | Vid18 | torso | 37 | 18.2 | 18.7 | 12.8755556 | 551.047852 | 281.961704 | 0.4036214 | -3.53 | -0.2382915 | 5.00 | patient | H | C | therapist |
| 295 | Vid18 | torso | 53 | 26.2 | 26.7 | 10.7250741 | 207.506148 | 109.115611 | 0.1859055 | -4.73 | -0.3266708 | 3.90 | therapist | H | C | therapist |
| 296 | Vid18 | torso | 54 | 26.7 | 27.2 | 22.3281111 | 332.781926 | 177.555018 | 0.1248983 | 5.00 | -0.3189466 | 0.40 | therapist | H | C | therapist |
| 297 | Vid18 | torso | 55 | 27.2 | 27.7 | 6.6761481 | 374.854852 | 190.765500 | 0.3510243 | -2.10 | -0.5317677 | 1.73 | therapist | H | C | therapist |
| 298 | Vid18 | torso | 57 | 28.2 | 28.7 | 15.0468519 | 1524.920222 | 769.983537 | 0.2252647 | -1.57 | -0.3594338 | 0.60 | therapist | H | C | therapist |
| 299 | Vid18 | torso | 58 | 28.7 | 29.2 | 37.7415185 | 505.316111 | 271.528815 | 0.2297498 | 5.00 | -0.3609280 | -5.00 | patient | H | C | therapist |
| 300 | Vid18 | torso | 63 | 31.2 | 31.7 | 9.8666667 | 739.929778 | 374.898222 | 0.4322546 | 0.80 | -0.1270192 | 4.50 | therapist | H | C | therapist |
| 301 | Vid18 | torso | 64 | 31.7 | 32.2 | 6.4344444 | 1513.736259 | 760.085352 | 0.5227513 | 1.10 | -0.3258868 | -5.00 | therapist | H | C | therapist |
| 302 | Vid18 | torso | 68 | 33.7 | 34.2 | 131.8195556 | 182.536296 | 157.177926 | 0.5447949 | 1.10 | -0.0448114 | -4.30 | therapist | H | C | therapist |
| 303 | Vid18 | torso | 73 | 36.2 | 36.7 | 217.4466667 | 3652.234482 | 1934.840574 | 0.5831740 | -1.40 | -0.2205171 | 5.00 | patient | H | C | therapist |
| 304 | Vid18 | legs | 11 | 5.2 | 5.7 | 35.4881852 | 222.915556 | 129.201870 | 0.4871013 | 5.00 | -0.3343778 | -5.00 | therapist | H | C | therapist |
| 305 | Vid18 | legs | 26 | 12.7 | 13.2 | 40.0982222 | 86.908111 | 63.503167 | 0.2846337 | 5.00 | -0.1706434 | -4.43 | therapist | H | C | therapist |
| 306 | Vid18 | legs | 32 | 15.7 | 16.2 | 79.6829630 | 22.593333 | 51.138148 | 0.3527644 | 5.00 | -0.1592821 | -5.00 | therapist | H | C | patient |
| 307 | Vid18 | legs | 33 | 16.2 | 16.7 | 53.6160000 | 1764.352482 | 908.984241 | 0.7234917 | 1.07 | -0.0210629 | -5.00 | therapist | H | C | therapist |
| 308 | Vid18 | legs | 35 | 17.2 | 17.7 | 27.2962222 | 98.562074 | 62.929148 | 0.3723111 | 5.00 | -0.4240932 | 1.10 | therapist | H | C | therapist |
| 309 | Vid18 | legs | 41 | 20.2 | 20.7 | 48.5486296 | 165.664407 | 107.106519 | 0.4088355 | -3.47 | -0.2660079 | 0.33 | patient | H | C | therapist |
| 310 | Vid18 | legs | 42 | 20.7 | 21.2 | 92.2081481 | 1927.366667 | 1009.787407 | 0.4696416 | 1.37 | -0.3408908 | -5.00 | therapist | H | C | therapist |
| 311 | Vid18 | legs | 44 | 21.7 | 22.2 | 25.8948519 | 40.679926 | 33.287389 | 0.1263285 | 4.63 | -0.4535066 | -0.47 | patient | H | C | therapist |
| 312 | Vid18 | legs | 48 | 23.7 | 24.2 | 29.4522963 | 82.511037 | 55.981667 | 0.0315495 | 2.80 | -0.3390760 | 0.70 | therapist | H | C | therapist |
| 313 | Vid18 | legs | 49 | 24.2 | 24.7 | 181.9998889 | 105.157667 | 143.578778 | 0.2057825 | 0.13 | -0.3067680 | 2.07 | therapist | H | C | patient |
| 314 | Vid18 | legs | 50 | 24.7 | 25.2 | 191.2524444 | 57.607741 | 124.430093 | 0.0604562 | 2.63 | -0.4903769 | -3.60 | patient | H | C | patient |
| 315 | Vid18 | legs | 51 | 25.2 | 25.7 | 194.7118148 | 69.225556 | 131.968685 | -0.1554143 | 1.27 | -0.5997319 | -2.83 | patient | H | C | patient |
| 316 | Vid18 | legs | 53 | 26.2 | 26.7 | 55.6328519 | 170.188185 | 112.910518 | 0.3173271 | 0.33 | -0.2271360 | 5.00 | therapist | H | C | therapist |
| 317 | Vid18 | legs | 54 | 26.7 | 27.2 | 150.9145185 | 273.501593 | 212.208056 | 0.0992556 | -5.00 | -0.4063068 | -0.03 | - | H | C | therapist |
| 318 | Vid18 | legs | 55 | 27.2 | 27.7 | 38.7655556 | 280.253889 | 159.509722 | 0.4095238 | -2.23 | -0.0738229 | 2.53 | patient | H | C | therapist |
| 319 | Vid18 | legs | 58 | 28.7 | 29.2 | 173.9600000 | 41.081407 | 107.520704 | 0.2987564 | 5.00 | -0.2722503 | -5.00 | therapist | H | C | patient |
| 320 | Vid18 | legs | 63 | 31.2 | 31.7 | 67.0577778 | 172.372407 | 119.715093 | 0.2747251 | -1.37 | -0.3243991 | 4.97 | therapist | H | C | therapist |
| 321 | Vid18 | legs | 68 | 33.7 | 34.2 | 109.7964444 | 20.404185 | 65.100315 | 0.6444752 | 1.27 | 0.0189346 | -4.83 | therapist | H | C | patient |
| 322 | Vid18 | legs | 73 | 36.2 | 36.7 | 474.6333333 | 1928.430778 | 1201.532056 | 0.5755433 | -0.97 | 0.0647626 | 5.00 | patient | H | C | therapist |
| 323 | Vid19 | head | 1 | 0.2 | 0.7 | 108.6597407 | 235.737704 | 172.198722 | 0.1450426 | 4.27 | -0.2168843 | 0.00 | - | H | T | therapist |
| 324 | Vid19 | head | 7 | 3.2 | 3.6 | 150.7438889 | 936.989667 | 543.866778 | 0.3785722 | 5.00 | -0.2359374 | -5.00 | therapist | H | T | therapist |
| 325 | Vid19 | head | 22 | 10.7 | 11.2 | 78.0941852 | 784.333148 | 431.213667 | 0.2468483 | 0.33 | -0.3664012 | -5.00 | patient | H | T | therapist |
| 326 | Vid19 | head | 25 | 12.2 | 12.7 | 87.6851111 | 962.966704 | 525.325907 | 0.6319325 | -1.30 | 0.0050229 | 5.00 | patient | H | T | therapist |
| 327 | Vid19 | head | 33 | 16.2 | 16.6 | 102.9706296 | 189.173111 | 146.071870 | 0.1510055 | -1.40 | -0.3928232 | -5.00 | patient | H | T | therapist |
| 328 | Vid19 | head | 34 | 16.7 | 17.1 | 492.1447407 | 465.080630 | 478.612685 | 0.3929560 | -4.17 | -0.5601531 | 5.00 | therapist | H | T | - |
| 329 | Vid19 | head | 36 | 17.7 | 18.1 | 83.3910370 | 173.566296 | 128.478667 | 0.1414474 | 5.00 | -0.3162541 | 1.40 | therapist | H | T | therapist |
| 330 | Vid19 | head | 37 | 18.2 | 18.6 | 92.1532593 | 701.828704 | 396.990981 | -0.0663992 | 5.00 | -0.3936039 | -0.10 | - | H | T | therapist |
| 331 | Vid19 | head | 38 | 18.7 | 19.1 | 75.0979259 | 169.363000 | 122.230463 | 0.0751704 | 1.40 | -0.2804694 | -5.00 | patient | H | T | therapist |
| 332 | Vid19 | head | 42 | 20.7 | 21.1 | 79.4396296 | 316.771481 | 198.105556 | 0.2043763 | 5.00 | -0.3195966 | -2.43 | patient | H | T | therapist |
| 333 | Vid19 | head | 50 | 24.7 | 25.1 | 74.0566296 | 391.486852 | 232.771741 | 0.4864178 | 1.00 | -0.2541827 | -2.67 | therapist | H | T | therapist |
| 334 | Vid19 | head | 53 | 26.2 | 26.6 | 270.7297037 | 245.438407 | 258.084056 | 0.1879614 | 2.17 | -0.3561924 | 0.00 | - | H | T | patient |
| 335 | Vid19 | head | 59 | 29.2 | 29.6 | 210.1755926 | 389.878556 | 300.027074 | 0.3850444 | 5.00 | -0.3406561 | -5.00 | therapist | H | T | therapist |
| 336 | Vid19 | head | 61 | 30.2 | 30.6 | 74.5083704 | 590.910222 | 332.709296 | 0.6491091 | -1.83 | 0.1778469 | 5.00 | patient | H | T | therapist |
| 337 | Vid19 | head | 62 | 30.7 | 31.1 | 92.3834074 | 232.353148 | 162.368278 | 0.5782516 | 5.00 | -0.0579305 | -0.17 | therapist | H | T | therapist |
| 338 | Vid19 | head | 64 | 31.7 | 32.1 | 388.9637407 | 284.453518 | 336.708630 | 0.1900379 | 5.00 | -0.3431180 | -3.13 | patient | H | T | patient |
| 339 | Vid19 | head | 66 | 32.7 | 33.1 | 90.2381481 | 520.848926 | 305.543537 | 0.4817893 | 2.70 | -0.3497092 | -4.57 | therapist | H | T | therapist |
| 340 | Vid19 | head | 68 | 33.7 | 34.1 | 100.4590370 | 647.640185 | 374.049611 | 0.2616301 | -1.60 | -0.2410273 | 2.50 | patient | H | T | therapist |
| 341 | Vid19 | head | 69 | 34.2 | 34.6 | 124.6518889 | 327.915778 | 226.283833 | 0.3846075 | 5.00 | -0.1907513 | -4.23 | therapist | H | T | therapist |
| 342 | Vid19 | head | 71 | 35.2 | 35.6 | 91.4610000 | 353.177148 | 222.319074 | 0.3055107 | -1.73 | -0.1339614 | 1.97 | patient | H | T | therapist |
| 343 | Vid19 | head | 72 | 35.7 | 36.1 | 208.4414074 | 604.828222 | 406.634815 | 0.3751685 | -3.20 | -0.1001534 | 0.60 | patient | H | T | therapist |
| 344 | Vid19 | head | 73 | 36.2 | 36.6 | 161.7641481 | 505.481481 | 333.622815 | 0.0810301 | 3.80 | -0.2865674 | -1.63 | patient | H | T | therapist |
| 345 | Vid19 | torso | 1 | 0.2 | 0.7 | 635.6000000 | 334.613667 | 485.106833 | 0.2927038 | -4.47 | -0.3064364 | 0.47 | therapist | H | T | patient |
| 346 | Vid19 | torso | 7 | 3.2 | 3.6 | 592.6461111 | 1908.421963 | 1250.534037 | 0.3328957 | 1.30 | 0.0572066 | -5.00 | therapist | H | T | therapist |
| 347 | Vid19 | torso | 12 | 5.7 | 6.2 | 923.5899630 | 509.969000 | 716.779481 | 0.2613457 | 0.17 | 0.0043631 | -4.30 | therapist | H | T | patient |
| 348 | Vid19 | torso | 16 | 7.7 | 8.2 | 891.7315926 | 378.746259 | 635.238926 | 0.3436403 | -4.80 | -0.1018103 | 4.63 | patient | H | T | patient |
| 349 | Vid19 | torso | 22 | 10.7 | 11.2 | 752.6627407 | 1741.696778 | 1247.179759 | 0.5204453 | -0.63 | -0.2278429 | 3.70 | patient | H | T | therapist |
| 350 | Vid19 | torso | 31 | 15.2 | 15.7 | 1193.9950370 | 880.321667 | 1037.158352 | 0.2641671 | 5.00 | -0.5741333 | -0.67 | patient | H | T | patient |
| 351 | Vid19 | torso | 34 | 16.7 | 17.1 | 662.4271111 | 350.314111 | 506.370611 | 0.4645211 | -4.03 | -0.3181503 | 2.23 | patient | H | T | patient |
| 352 | Vid19 | torso | 37 | 18.2 | 18.6 | 581.1467778 | 1111.551000 | 846.348889 | 0.3945253 | 4.57 | -0.6297501 | -5.00 | patient | H | T | therapist |
| 353 | Vid19 | torso | 51 | 25.2 | 25.6 | 796.4593704 | 1277.989296 | 1037.224333 | 0.1626976 | 1.83 | -0.1840824 | -4.97 | patient | H | T | therapist |
| 354 | Vid19 | torso | 52 | 25.7 | 26.1 | 840.5168148 | 350.351333 | 595.434074 | 0.6054134 | -0.57 | -0.4914687 | 4.63 | patient | H | T | patient |
| 355 | Vid19 | torso | 53 | 26.2 | 26.6 | 854.2450741 | 610.622259 | 732.433667 | 0.2916068 | 4.97 | -0.2647175 | -4.07 | therapist | H | T | patient |
| 356 | Vid19 | torso | 54 | 26.7 | 27.1 | 690.7064074 | 909.043444 | 799.874926 | 0.4809187 | -0.30 | -0.1546065 | -4.80 | patient | H | T | therapist |
| 357 | Vid19 | torso | 57 | 28.2 | 28.6 | 1361.8571852 | 448.203185 | 905.030185 | 0.3323318 | -3.53 | -0.0741491 | 0.77 | patient | H | T | patient |
| 358 | Vid19 | torso | 64 | 31.7 | 32.1 | 960.3065185 | 768.513111 | 864.409815 | 0.0566304 | 0.37 | -0.3966749 | -2.97 | patient | H | T | patient |
| 359 | Vid19 | torso | 66 | 32.7 | 33.1 | 549.8074444 | 1290.470148 | 920.138796 | 0.4865475 | 0.20 | -0.3233207 | -5.00 | therapist | H | T | therapist |
| 360 | Vid19 | torso | 67 | 33.2 | 33.6 | 868.8735926 | 695.331852 | 782.102722 | 0.6693771 | 4.13 | -0.2328817 | -5.00 | therapist | H | T | patient |
| 361 | Vid19 | torso | 69 | 34.2 | 34.6 | 840.3047037 | 757.778407 | 799.041556 | 0.1562676 | 2.63 | -0.5923817 | -3.27 | patient | H | T | patient |
| 362 | Vid19 | torso | 72 | 35.7 | 36.1 | 810.2400000 | 1668.554889 | 1239.397444 | 0.3773119 | -3.00 | -0.1658828 | 0.43 | patient | H | T | therapist |
| 363 | Vid19 | torso | 74 | 36.7 | 37.1 | 820.0505556 | 650.237852 | 735.144204 | 0.4697700 | 0.97 | -0.2520743 | 3.30 | therapist | H | T | patient |
| 364 | Vid19 | legs | 1 | 0.2 | 0.7 | 35.8220741 | 108.113518 | 71.967796 | 0.3593243 | -3.83 | -0.2340479 | 3.87 | patient | H | T | therapist |
| 365 | Vid19 | legs | 36 | 17.7 | 18.1 | 14.2809259 | 71.015556 | 42.648241 | 0.1352999 | -4.47 | -0.2425446 | -2.43 | patient | H | T | therapist |
| 366 | Vid19 | legs | 37 | 18.2 | 18.6 | 28.0966667 | 379.198482 | 203.647574 | 0.6665022 | 1.03 | -0.1362562 | 5.00 | therapist | H | T | therapist |
| 367 | Vid19 | legs | 43 | 21.2 | 21.6 | 71.7133333 | 90.758037 | 81.235685 | 0.5456226 | 0.17 | -0.2878471 | -4.77 | therapist | H | T | therapist |
| 368 | Vid19 | legs | 61 | 30.2 | 30.6 | 49.3428889 | 576.617148 | 312.980019 | 0.2517542 | -3.67 | -0.2097281 | 3.53 | patient | H | T | therapist |
| 369 | Vid19 | legs | 67 | 33.2 | 33.6 | 88.3500000 | 313.407370 | 200.878685 | 0.6786655 | 3.87 | -0.2057345 | -5.00 | therapist | H | T | therapist |
| 370 | Vid19 | legs | 69 | 34.2 | 34.6 | 159.7822222 | 359.000111 | 259.391167 | -0.1209556 | -5.00 | -0.5391378 | 0.03 | - | H | T | therapist |
| 371 | Vid19 | legs | 72 | 35.7 | 36.1 | 69.0711111 | 483.180296 | 276.125704 | 0.4163279 | -3.90 | -0.2538538 | 5.00 | patient | H | T | therapist |
| 372 | Vid19 | legs | 73 | 36.2 | 36.6 | 52.7799259 | 76.650630 | 64.715278 | 0.1914579 | -5.00 | -0.2980698 | 4.80 | therapist | H | T | therapist |
| 373 | Vid19 | legs | 74 | 36.7 | 37.1 | 16.4777778 | 348.749556 | 182.613667 | 0.4739296 | -1.63 | 0.0326352 | -3.17 | patient | H | T | therapist |
| 374 | Vid20 | head | 17 | 8.1 | 8.6 | 728.8068519 | 127.719000 | 428.262926 | 0.1892608 | 4.00 | -0.1637966 | -3.70 | therapist | M | T | patient |
| 375 | Vid20 | head | 29 | 14.1 | 14.6 | 676.7493333 | 103.698111 | 390.223722 | 0.3748188 | -3.70 | -0.0819341 | 5.00 | patient | M | T | patient |
| 376 | Vid20 | head | 30 | 14.6 | 15.1 | 949.4143704 | 157.698222 | 553.556296 | 0.2552020 | 0.17 | -0.4941776 | -2.77 | patient | M | T | patient |
| 377 | Vid20 | head | 31 | 15.1 | 15.6 | 878.8851481 | 122.718852 | 500.802000 | 0.3558109 | 4.03 | -0.2927471 | 0.13 | therapist | M | T | patient |
| 378 | Vid20 | head | 32 | 15.6 | 16.1 | 723.2151481 | 382.079185 | 552.647167 | 0.2494683 | -4.77 | -0.4054440 | 4.53 | therapist | M | T | patient |
| 379 | Vid20 | head | 33 | 16.1 | 16.6 | 663.8689259 | 167.035556 | 415.452241 | 0.0598324 | 4.27 | -0.3815094 | -4.37 | patient | M | T | patient |
| 380 | Vid20 | head | 35 | 17.1 | 17.6 | 380.9467037 | 546.994037 | 463.970370 | 0.2291858 | -4.50 | -0.1400609 | 0.00 | patient | M | T | therapist |
| 381 | Vid20 | head | 46 | 22.6 | 23.1 | 444.1524815 | 76.328074 | 260.240278 | 0.4987045 | -0.83 | -0.4778367 | 4.13 | patient | M | T | patient |
| 382 | Vid20 | head | 48 | 23.6 | 24.1 | 324.8784074 | 109.467593 | 217.173000 | 0.3736480 | 1.27 | -0.1207664 | 3.53 | therapist | M | T | patient |
| 383 | Vid20 | head | 55 | 27.1 | 27.6 | 663.9162222 | 386.949296 | 525.432759 | 0.0422924 | -1.53 | -0.4682047 | 3.23 | therapist | M | T | patient |
| 384 | Vid20 | head | 57 | 28.1 | 28.6 | 404.0605556 | 268.059037 | 336.059796 | 0.4013975 | 3.13 | -0.0339577 | 0.43 | therapist | M | T | patient |
| 385 | Vid20 | head | 58 | 28.6 | 29.1 | 1277.5500741 | 204.577296 | 741.063685 | 0.6457657 | -1.27 | -0.0154421 | 4.23 | patient | M | T | patient |
| 386 | Vid20 | head | 59 | 29.1 | 29.6 | 305.8176296 | 177.817000 | 241.817315 | 0.1733566 | -0.63 | -0.4505336 | 3.93 | therapist | M | T | patient |
| 387 | Vid20 | head | 63 | 31.1 | 31.6 | 951.9969259 | 136.879185 | 544.438056 | 0.1313809 | 4.63 | -0.3773469 | -3.20 | patient | M | T | patient |
| 388 | Vid20 | head | 69 | 34.1 | 34.6 | 626.3617778 | 96.750815 | 361.556296 | 0.1876922 | 4.27 | -0.3714691 | -4.07 | patient | M | T | patient |
| 389 | Vid20 | head | 74 | 36.6 | 37.1 | 342.8297407 | 159.086704 | 250.958222 | 0.3885614 | -2.63 | -0.2933942 | 5.00 | patient | M | T | patient |
| 390 | Vid20 | head | 75 | 37.1 | 37.6 | 690.4758519 | 417.901444 | 554.188648 | 0.2012264 | 3.10 | -0.4877462 | -2.20 | patient | M | T | patient |
| 391 | Vid20 | torso | 8 | 3.6 | 4.1 | 797.3616296 | 2631.169889 | 1714.265759 | 0.0258977 | -1.90 | -0.2063666 | 3.07 | therapist | M | T | therapist |
| 392 | Vid20 | torso | 14 | 6.6 | 7.1 | 622.2657778 | 380.063259 | 501.164518 | 0.1500975 | 4.87 | -0.4639959 | -3.87 | patient | M | T | patient |
| 393 | Vid20 | torso | 17 | 8.1 | 8.6 | 2782.5507778 | 767.255222 | 1774.903000 | 0.3195426 | -0.43 | -0.1743810 | -3.97 | patient | M | T | patient |
| 394 | Vid20 | torso | 25 | 12.1 | 12.6 | 2003.7973704 | 541.216222 | 1272.506796 | 0.1814233 | 5.00 | -0.3352660 | -4.77 | patient | M | T | patient |
| 395 | Vid20 | torso | 29 | 14.1 | 14.6 | 1959.3084444 | 691.639741 | 1325.474093 | 0.5395431 | -3.57 | -0.2171824 | 5.00 | patient | M | T | patient |
| 396 | Vid20 | torso | 32 | 15.6 | 16.1 | 2872.3111111 | 1309.064185 | 2090.687648 | 0.2034695 | -4.70 | -0.6052606 | 4.97 | therapist | M | T | patient |
| 397 | Vid20 | torso | 33 | 16.1 | 16.6 | 1357.2570370 | 813.509407 | 1085.383222 | -0.0328153 | 0.73 | -0.3712453 | -4.73 | patient | M | T | patient |
| 398 | Vid20 | torso | 35 | 17.1 | 17.6 | 583.1542963 | 3529.674222 | 2056.414259 | 0.3360703 | -2.77 | -0.1615807 | 1.87 | patient | M | T | therapist |
| 399 | Vid20 | torso | 46 | 22.6 | 23.1 | 763.2108519 | 529.942481 | 646.576667 | 0.4757027 | 0.20 | -0.6352228 | -5.00 | patient | M | T | patient |
| 400 | Vid20 | torso | 48 | 23.6 | 24.1 | 488.6504444 | 601.197778 | 544.924111 | 0.4021383 | 0.40 | 0.0115283 | -5.00 | therapist | M | T | therapist |
| 401 | Vid20 | torso | 58 | 28.6 | 29.1 | 1596.7310370 | 370.632259 | 983.681648 | 0.5635521 | -0.97 | -0.1191929 | 3.87 | patient | M | T | patient |
| 402 | Vid20 | torso | 68 | 33.6 | 34.1 | 777.7031481 | 914.735074 | 846.219111 | 0.4155091 | 2.13 | -0.2305979 | -5.00 | therapist | M | T | therapist |
| 403 | Vid20 | torso | 70 | 34.6 | 35.1 | 527.3705556 | 458.119630 | 492.745093 | 0.1050423 | 1.43 | -0.3186351 | 5.00 | therapist | M | T | patient |
| 404 | Vid20 | torso | 74 | 36.6 | 37.1 | 556.0656296 | 841.647556 | 698.856593 | 0.1477949 | -5.00 | -0.4903570 | 2.77 | therapist | M | T | therapist |
| 405 | Vid20 | torso | 75 | 37.1 | 37.6 | 1722.7172963 | 2457.958815 | 2090.338056 | 0.2116178 | 3.50 | -0.3632217 | -2.80 | patient | M | T | therapist |
| 406 | Vid20 | torso | 79 | 39.1 | 39.6 | 2341.0592222 | 620.638148 | 1480.848685 | 0.2186927 | -5.00 | -0.7460557 | -0.50 | patient | M | T | patient |
| 407 | Vid20 | torso | 80 | 39.6 | 40.1 | 972.9600370 | 1415.777296 | 1194.368667 | 0.0429824 | -5.00 | -0.5929002 | 0.83 | therapist | M | T | therapist |
| 408 | Vid20 | legs | 11 | 5.1 | 5.6 | 82.1492963 | 337.663593 | 209.906444 | 0.2334968 | -5.00 | -0.1080862 | 1.90 | patient | M | T | therapist |
| 409 | Vid20 | legs | 17 | 8.1 | 8.6 | 149.2709259 | 204.442519 | 176.856722 | 0.3038391 | 2.63 | -0.2102740 | -5.00 | therapist | M | T | therapist |
| 410 | Vid20 | legs | 23 | 11.1 | 11.6 | 50.7222222 | 493.164482 | 271.943352 | 0.0292416 | 5.00 | -0.2159279 | -0.97 | patient | M | T | therapist |
| 411 | Vid20 | legs | 26 | 12.6 | 13.1 | 94.1241111 | 149.157556 | 121.640833 | 0.1596398 | -2.70 | -0.5093515 | 0.87 | therapist | M | T | therapist |
| 412 | Vid20 | legs | 27 | 13.1 | 13.6 | 281.6325185 | 110.538333 | 196.085426 | 0.5431876 | 0.27 | -0.1881263 | -4.27 | therapist | M | T | patient |
| 413 | Vid20 | legs | 28 | 13.6 | 14.1 | 186.3004815 | 442.643630 | 314.472056 | 0.0015894 | 3.07 | -0.2989336 | -0.90 | patient | M | T | therapist |
| 414 | Vid20 | legs | 29 | 14.1 | 14.6 | 199.7640370 | 343.530963 | 271.647500 | 0.1431497 | 5.00 | -0.4028810 | -0.70 | patient | M | T | therapist |
| 415 | Vid20 | legs | 30 | 14.6 | 15.1 | 102.7446296 | 150.268593 | 126.506611 | 0.3243047 | -0.33 | -0.1558600 | -3.50 | patient | M | T | therapist |
| 416 | Vid20 | legs | 34 | 16.6 | 17.1 | 102.2244815 | 401.687556 | 251.956018 | 0.1848725 | 4.20 | -0.4070092 | -4.20 | patient | M | T | therapist |
| 417 | Vid20 | legs | 35 | 17.1 | 17.6 | 60.8297407 | 2677.478333 | 1369.154037 | 0.1325795 | -0.27 | -0.2147173 | 5.00 | therapist | M | T | therapist |
| 418 | Vid20 | legs | 46 | 22.6 | 23.1 | 168.8770000 | 145.618556 | 157.247778 | 0.1698179 | 1.27 | -0.4012843 | -5.00 | patient | M | T | patient |
| 419 | Vid20 | legs | 48 | 23.6 | 24.1 | 75.5144444 | 416.492519 | 246.003481 | 0.5274045 | 2.30 | -0.1162737 | -5.00 | therapist | M | T | therapist |
| 420 | Vid20 | legs | 49 | 24.1 | 24.6 | 92.8041481 | 747.173481 | 419.988815 | 0.3257397 | 5.00 | -0.5338586 | -0.47 | patient | M | T | therapist |
| 421 | Vid20 | legs | 51 | 25.1 | 25.6 | 140.1844444 | 273.159704 | 206.672074 | 0.1612085 | 0.73 | -0.2616340 | -3.17 | patient | M | T | therapist |
| 422 | Vid20 | legs | 52 | 25.6 | 26.1 | 76.0867778 | 658.286037 | 367.186407 | 0.2973594 | 3.27 | -0.2030103 | 0.00 | therapist | M | T | therapist |
| 423 | Vid20 | legs | 58 | 28.6 | 29.1 | 68.1408148 | 242.349778 | 155.245296 | 0.1546301 | 2.10 | -0.3497752 | -5.00 | patient | M | T | therapist |
| 424 | Vid20 | legs | 64 | 31.6 | 32.1 | 44.5368519 | 869.815296 | 457.176074 | 0.6785646 | 3.03 | -0.1680119 | -5.00 | therapist | M | T | therapist |
| 425 | Vid20 | legs | 70 | 34.6 | 35.1 | 51.7826667 | 186.109407 | 118.946037 | 0.2695978 | -4.87 | -0.1534447 | 2.73 | patient | M | T | therapist |
| 426 | Vid20 | legs | 75 | 37.1 | 37.6 | 88.1884444 | 1311.613630 | 699.901037 | 0.3078925 | -0.53 | -0.5204970 | -3.60 | patient | M | T | therapist |
| 427 | Vid20 | legs | 76 | 37.6 | 38.1 | 74.4596667 | 166.370667 | 120.415167 | 0.5779655 | -0.87 | 0.0384005 | -5.00 | patient | M | T | therapist |
| 428 | Vid20 | legs | 80 | 39.6 | 40.1 | 80.6489630 | 142.288704 | 111.468833 | 0.3693259 | 3.63 | -0.1974025 | -1.33 | therapist | M | T | therapist |
| 429 | Vid21 | head | 2 | 0.7 | 1.2 | 379.2138148 | 585.456519 | 482.335167 | 0.3151874 | 5.00 | -0.2273227 | -2.90 | therapist | M | T | therapist |
| 430 | Vid21 | head | 4 | 1.7 | 2.2 | 80.6009259 | 241.835185 | 161.218056 | -0.3521776 | -5.00 | -0.5538270 | -2.17 | patient | M | T | therapist |
| 431 | Vid21 | head | 10 | 4.7 | 5.2 | 129.1812593 | 433.029889 | 281.105574 | 0.2741279 | -5.00 | -0.3217534 | 4.17 | therapist | M | T | therapist |
| 432 | Vid21 | head | 21 | 10.2 | 10.7 | 110.4046296 | 554.662444 | 332.533537 | 0.2018878 | 5.00 | -0.5355169 | -0.30 | patient | M | T | therapist |
| 433 | Vid21 | head | 25 | 12.2 | 12.7 | 129.4070000 | 141.457556 | 135.432278 | 0.0793021 | 1.60 | -0.3901438 | 4.53 | therapist | M | T | - |
| 434 | Vid21 | head | 28 | 13.7 | 14.2 | 62.4541852 | 139.546296 | 101.000241 | 0.1192943 | -5.00 | -0.4634665 | 1.40 | therapist | M | T | therapist |
| 435 | Vid21 | head | 30 | 14.7 | 15.2 | 70.8893704 | 180.726333 | 125.807852 | 0.5135092 | -2.97 | -0.4045262 | 2.43 | patient | M | T | therapist |
| 436 | Vid21 | head | 31 | 15.2 | 15.7 | 154.3015185 | 123.289259 | 138.795389 | 0.3767587 | 1.83 | 0.0007181 | -2.70 | therapist | M | T | patient |
| 437 | Vid21 | head | 32 | 15.7 | 16.2 | 114.6227778 | 283.316000 | 198.969389 | 0.0689292 | -4.20 | -0.5747737 | 3.33 | therapist | M | T | therapist |
| 438 | Vid21 | head | 36 | 17.7 | 18.2 | 117.0117037 | 306.136778 | 211.574241 | 0.3352539 | -4.43 | -0.1086158 | 3.20 | patient | M | T | therapist |
| 439 | Vid21 | head | 37 | 18.2 | 18.7 | 75.3465185 | 400.630259 | 237.988389 | 0.3350965 | -5.00 | -0.3570445 | 0.47 | therapist | M | T | therapist |
| 440 | Vid21 | head | 38 | 18.7 | 19.2 | 71.2975185 | 94.970630 | 83.134074 | 0.3388489 | 2.70 | -0.3666353 | -4.83 | patient | M | T | therapist |
| 441 | Vid21 | head | 39 | 19.2 | 19.7 | 87.9551852 | 126.922667 | 107.438926 | 0.3914940 | -5.00 | -0.5408718 | 4.20 | therapist | M | T | therapist |
| 442 | Vid21 | head | 41 | 20.2 | 20.7 | 124.4871111 | 160.133519 | 142.310315 | 0.1612365 | 3.67 | -0.1569609 | -5.00 | therapist | M | T | therapist |
| 443 | Vid21 | head | 45 | 22.2 | 22.7 | 70.3439630 | 246.782000 | 158.562982 | -0.0334952 | 5.00 | -0.2672985 | 2.90 | therapist | M | T | therapist |
| 444 | Vid21 | head | 50 | 24.7 | 25.2 | 63.6990000 | 380.996111 | 222.347556 | 0.4360187 | -2.43 | 0.2153716 | 0.43 | patient | M | T | therapist |
| 445 | Vid21 | head | 51 | 25.2 | 25.7 | 91.4463333 | 244.748926 | 168.097630 | 0.2501994 | -2.60 | -0.2706793 | 0.73 | therapist | M | T | therapist |
| 446 | Vid21 | head | 65 | 32.2 | 32.7 | 140.3879259 | 1053.312444 | 596.850185 | 0.3784233 | 4.60 | -0.6245115 | -5.00 | patient | M | T | therapist |
| 447 | Vid21 | head | 66 | 32.7 | 33.2 | 52.0574444 | 1058.818593 | 555.438018 | 0.3485994 | 4.03 | -0.3079128 | -1.30 | therapist | M | T | therapist |
| 448 | Vid21 | torso | 2 | 0.7 | 1.2 | 312.8855556 | 727.408000 | 520.146778 | 0.2769025 | 0.63 | -0.3483392 | 2.90 | therapist | M | T | therapist |
| 449 | Vid21 | torso | 4 | 1.7 | 2.2 | 213.6491481 | 194.135370 | 203.892259 | 0.1635581 | -3.67 | -0.6099524 | 4.07 | therapist | M | T | patient |
| 450 | Vid21 | torso | 10 | 4.7 | 5.2 | 671.5004815 | 924.644222 | 798.072352 | 0.2830412 | -2.93 | -0.2199931 | 5.00 | patient | M | T | therapist |
| 451 | Vid21 | torso | 13 | 6.2 | 6.7 | 265.7959630 | 373.642518 | 319.719241 | -0.1254646 | -3.70 | -0.5873749 | 2.77 | therapist | M | T | therapist |
| 452 | Vid21 | torso | 21 | 10.2 | 10.7 | 238.0052963 | 1079.291370 | 658.648333 | -0.1417549 | 2.77 | -0.3265075 | -3.00 | patient | M | T | therapist |
| 453 | Vid21 | torso | 25 | 12.2 | 12.7 | 492.9438519 | 380.198148 | 436.571000 | 0.3564531 | -4.83 | -0.5532104 | 4.87 | therapist | M | T | patient |
| 454 | Vid21 | torso | 28 | 13.7 | 14.2 | 175.4031852 | 360.817593 | 268.110389 | 0.3175415 | -2.53 | -0.3608133 | 5.00 | therapist | M | T | therapist |
| 455 | Vid21 | torso | 36 | 17.7 | 18.2 | 630.6683704 | 623.273148 | 626.970759 | 0.6002670 | -4.70 | -0.0983751 | 3.03 | patient | M | T | - |
| 456 | Vid21 | torso | 46 | 22.7 | 23.2 | 222.4547407 | 638.515815 | 430.485278 | -0.0173921 | -4.30 | -0.4637595 | -0.73 | patient | M | T | therapist |
| 457 | Vid21 | torso | 50 | 24.7 | 25.2 | 540.1848148 | 701.959111 | 621.071963 | 0.6024892 | 1.03 | 0.0421173 | -5.00 | therapist | M | T | therapist |
| 458 | Vid21 | torso | 51 | 25.2 | 25.7 | 867.1715185 | 149.192704 | 508.182111 | 0.3943882 | -5.00 | -0.2814207 | 1.23 | patient | M | T | patient |
| 459 | Vid21 | torso | 65 | 32.2 | 32.7 | 666.1781111 | 1749.706778 | 1207.942444 | 0.1930867 | 5.00 | -0.7485681 | -4.93 | patient | M | T | therapist |
| 460 | Vid21 | torso | 66 | 32.7 | 33.2 | 206.3620741 | 2701.498407 | 1453.930241 | -0.0572728 | 3.33 | -0.6127103 | 0.57 | therapist | M | T | therapist |
| 461 | Vid21 | torso | 67 | 33.2 | 33.7 | 349.4406667 | 182.663481 | 266.052074 | -0.3615156 | -5.00 | -0.6803492 | -1.10 | patient | M | T | patient |
| 462 | Vid21 | legs | 2 | 0.7 | 1.2 | 72.7431852 | 80.588741 | 76.665963 | 0.3357642 | 0.87 | -0.1632874 | 2.87 | therapist | M | T | - |
| 463 | Vid21 | legs | 10 | 4.7 | 5.2 | 34.8818519 | 104.344037 | 69.612944 | 0.3466566 | 4.93 | -0.0013085 | -4.63 | therapist | M | T | therapist |
| 464 | Vid21 | legs | 18 | 8.7 | 9.2 | 14.6207778 | 316.600259 | 165.610519 | -0.1772500 | -0.33 | -0.4223791 | -3.87 | patient | M | T | therapist |
| 465 | Vid21 | legs | 21 | 10.2 | 10.7 | 20.2845556 | 256.183444 | 138.234000 | 0.2119232 | 4.23 | -0.3589268 | -5.00 | patient | M | T | therapist |
| 466 | Vid21 | legs | 30 | 14.7 | 15.2 | 28.8442593 | 78.947259 | 53.895759 | 0.1464834 | -5.00 | -0.4373850 | -1.53 | patient | M | T | therapist |
| 467 | Vid21 | legs | 31 | 15.2 | 15.7 | 65.7712963 | 125.438889 | 95.605093 | 0.5262793 | -2.47 | -0.1753058 | 0.97 | patient | M | T | therapist |
| 468 | Vid21 | legs | 32 | 15.7 | 16.2 | 8.7962963 | 77.358889 | 43.077593 | 0.4772480 | -3.43 | -0.1137413 | 3.60 | patient | M | T | therapist |
| 469 | Vid21 | legs | 34 | 16.7 | 17.2 | 26.5289259 | 91.794111 | 59.161518 | 0.1875721 | 5.00 | -0.5289393 | -1.63 | patient | M | T | therapist |
| 470 | Vid21 | legs | 35 | 17.2 | 17.7 | 130.1444444 | 261.915444 | 196.029944 | 0.3341730 | 5.00 | -0.2862399 | -5.00 | therapist | M | T | therapist |
| 471 | Vid21 | legs | 36 | 17.7 | 18.2 | 71.8237778 | 243.041111 | 157.432444 | 0.4643298 | -0.77 | -0.1688003 | 4.17 | patient | M | T | therapist |
| 472 | Vid21 | legs | 38 | 18.7 | 19.2 | 99.4193333 | 62.928185 | 81.173759 | 0.3628229 | 1.80 | -0.3671496 | -3.17 | patient | M | T | patient |
| 473 | Vid21 | legs | 45 | 22.2 | 22.7 | 24.7885556 | 244.596296 | 134.692426 | 0.4147991 | 4.63 | -0.3934003 | -4.17 | therapist | M | T | therapist |
| 474 | Vid21 | legs | 65 | 32.2 | 32.7 | 17.8522222 | 458.527778 | 238.190000 | 0.1945844 | 5.00 | -0.4793088 | -5.00 | patient | M | T | therapist |
| 475 | Vid21 | legs | 66 | 32.7 | 33.2 | 8.7855185 | 218.388333 | 113.586926 | 0.2729471 | 3.53 | -0.3042207 | -0.67 | patient | M | T | therapist |
| 476 | Vid22 | head | 1 | 0.1 | 0.6 | 13.2154444 | 869.825889 | 441.520667 | 0.2386701 | -4.40 | -0.2750485 | 2.77 | therapist | M | C | therapist |
| 477 | Vid22 | head | 7 | 3.1 | 3.6 | 11.1271852 | 58.827704 | 34.977444 | 0.2280492 | 1.70 | -0.3205866 | -0.67 | patient | M | C | therapist |
| 478 | Vid22 | head | 12 | 5.6 | 6.1 | 66.4697778 | 199.765037 | 133.117407 | 0.0572824 | -0.97 | -0.3337974 | 4.77 | therapist | M | C | therapist |
| 479 | Vid22 | head | 14 | 6.6 | 7.1 | 6.7177407 | 174.560222 | 90.638981 | -0.0256085 | -1.83 | -0.3399598 | -3.97 | patient | M | C | therapist |
| 480 | Vid22 | head | 17 | 8.1 | 8.6 | 28.2381111 | 171.982815 | 100.110463 | 0.1103153 | -0.60 | -0.2291141 | 2.93 | therapist | M | C | therapist |
| 481 | Vid22 | head | 20 | 9.6 | 10.1 | 8.3605926 | 63.447185 | 35.903889 | 0.3826995 | -0.17 | -0.4186532 | 5.00 | therapist | M | C | therapist |
| 482 | Vid22 | head | 23 | 11.1 | 11.6 | 37.7585926 | 241.416444 | 139.587518 | 0.4631838 | -0.93 | -0.0066234 | 4.40 | patient | M | C | therapist |
| 483 | Vid22 | head | 28 | 13.6 | 14.1 | 24.7865926 | 136.870630 | 80.828611 | 0.3570714 | 2.97 | -0.2745926 | -3.13 | therapist | M | C | therapist |
| 484 | Vid22 | head | 29 | 14.1 | 14.6 | 51.7138519 | 153.830222 | 102.772037 | 0.2526983 | -2.27 | 0.0171713 | 5.00 | patient | M | C | therapist |
| 485 | Vid22 | torso | 12 | 5.6 | 6.1 | 460.2563333 | 1250.162407 | 855.209370 | 0.1203723 | -5.00 | -0.5198586 | 4.67 | therapist | M | C | therapist |
| 486 | Vid22 | torso | 17 | 8.1 | 8.6 | 1598.6958148 | 1523.391296 | 1561.043556 | -0.2563796 | 5.00 | -0.5804798 | -3.47 | patient | M | C | - |
| 487 | Vid22 | torso | 23 | 11.1 | 11.6 | 638.2033333 | 2258.192482 | 1448.197907 | 0.2354993 | -4.73 | -0.3430570 | 1.10 | therapist | M | C | therapist |
| 488 | Vid22 | torso | 28 | 13.6 | 14.1 | 1313.6087037 | 1313.820111 | 1313.714407 | 0.2085631 | -5.00 | -0.2837680 | 5.00 | therapist | M | C | - |
| 489 | Vid22 | torso | 29 | 14.1 | 14.6 | 622.8380370 | 1107.535185 | 865.186611 | 0.4729056 | 2.70 | -0.1756751 | -4.43 | therapist | M | C | therapist |
| 490 | Vid22 | torso | 33 | 16.1 | 16.6 | 395.6501852 | 554.162296 | 474.906241 | 0.0598020 | -5.00 | -0.4308481 | -0.43 | patient | M | C | therapist |
| 491 | Vid22 | legs | 1 | 0.1 | 0.6 | 13.3042593 | 1715.583370 | 864.443815 | 0.2365479 | -4.30 | -0.3019607 | 1.50 | therapist | M | C | therapist |
| 492 | Vid22 | legs | 12 | 5.6 | 6.1 | 22.4117037 | 338.665556 | 180.538630 | 0.1442421 | -4.93 | -0.1917839 | -2.87 | patient | M | C | therapist |
| 493 | Vid22 | legs | 17 | 8.1 | 8.6 | 10.4144444 | 8.896963 | 9.655704 | 0.0679196 | -4.47 | -0.4891682 | 2.43 | therapist | M | C | patient |
| 494 | Vid22 | legs | 23 | 11.1 | 11.6 | 10.4107778 | 9.102148 | 9.756463 | 0.1789447 | 5.00 | -0.4836964 | 1.17 | therapist | M | C | patient |
| 495 | Vid22 | legs | 28 | 13.6 | 14.1 | 7.7211111 | 8.059556 | 7.890333 | 0.5244071 | -2.60 | -0.0709166 | 3.60 | patient | M | C | - |
| 496 | Vid22 | legs | 29 | 14.1 | 14.6 | 25.0244074 | 12.828333 | 18.926370 | 0.4710814 | 1.97 | -0.1549464 | -4.57 | therapist | M | C | patient |
| 497 | Vid22 | legs | 39 | 19.1 | 19.6 | 5.6961111 | 15.252370 | 10.474241 | 0.1726493 | -2.60 | -0.2921088 | 2.30 | therapist | M | C | therapist |
| 498 | Vid23 | head | 16 | 7.7 | 8.2 | 58.5702222 | 138.118889 | 98.344556 | 0.6345781 | 1.80 | 0.2076604 | 5.00 | therapist | M | T | therapist |
| 499 | Vid23 | head | 21 | 10.2 | 10.7 | 107.2157778 | 121.383556 | 114.299667 | 0.5456258 | 1.20 | -0.0062008 | -5.00 | therapist | M | T | therapist |
| 500 | Vid23 | head | 47 | 23.2 | 23.7 | 79.1566667 | 329.001111 | 204.078889 | 0.4300431 | 1.67 | -0.0960660 | -4.87 | therapist | M | T | therapist |
| 501 | Vid23 | head | 51 | 25.2 | 25.7 | 80.4309630 | 363.752778 | 222.091870 | 0.6697389 | 0.33 | -0.5113716 | -2.93 | therapist | M | T | therapist |
| 502 | Vid23 | head | 53 | 26.2 | 26.7 | 227.3885556 | 428.903259 | 328.145907 | 0.5612542 | 0.17 | -0.1494062 | 4.47 | therapist | M | T | therapist |
| 503 | Vid23 | head | 55 | 27.2 | 27.7 | 113.7071852 | 801.720482 | 457.713833 | 0.7269048 | 0.17 | -0.2850257 | -1.73 | therapist | M | T | therapist |
| 504 | Vid23 | head | 59 | 29.2 | 29.7 | 37.9937778 | 196.027370 | 117.010574 | 0.5560380 | 0.43 | 0.0572095 | 5.00 | therapist | M | T | therapist |
| 505 | Vid23 | head | 61 | 30.2 | 30.7 | 144.8527407 | 706.949259 | 425.901000 | 0.7940135 | 0.20 | 0.0794257 | -5.00 | therapist | M | T | therapist |
| 506 | Vid23 | head | 67 | 33.2 | 33.7 | 55.9546667 | 478.368333 | 267.161500 | 0.7472404 | -2.83 | 0.2011471 | 5.00 | patient | M | T | therapist |
| 507 | Vid23 | head | 71 | 35.2 | 35.7 | 45.9413704 | 660.624852 | 353.283111 | 0.6275015 | 0.40 | -0.2497804 | -1.33 | therapist | M | T | therapist |
| 508 | Vid23 | head | 78 | 38.7 | 39.2 | 102.4040000 | 611.923037 | 357.163519 | 0.4790306 | 0.30 | -0.2008468 | -1.03 | therapist | M | T | therapist |
| 509 | Vid23 | head | 81 | 40.2 | 40.7 | 94.1264444 | 444.730630 | 269.428537 | 0.8515147 | 0.23 | -0.3461801 | -5.00 | therapist | M | T | therapist |
| 510 | Vid23 | torso | 3 | 1.2 | 1.7 | 574.3241852 | 36.573741 | 305.448963 | 0.1077126 | 4.23 | -0.1953754 | -4.40 | patient | M | T | patient |
| 511 | Vid23 | torso | 6 | 2.7 | 3.2 | 203.6144444 | 42.532519 | 123.073481 | 0.3606256 | 0.87 | -0.0872686 | 3.17 | therapist | M | T | patient |
| 512 | Vid23 | torso | 10 | 4.7 | 5.2 | 190.9998889 | 12.384889 | 101.692389 | 0.0672561 | 5.00 | -0.2583625 | -3.93 | patient | M | T | patient |
| 513 | Vid23 | torso | 13 | 6.2 | 6.7 | 196.3584074 | 43.244518 | 119.801463 | 0.1511151 | -3.70 | -0.2269151 | 4.87 | therapist | M | T | patient |
| 514 | Vid23 | torso | 33 | 16.2 | 16.7 | 225.3691481 | 90.141815 | 157.755482 | 0.2314253 | 3.80 | -0.2295323 | -0.17 | therapist | M | T | patient |
| 515 | Vid23 | torso | 36 | 17.7 | 18.2 | 184.7331111 | 13.584407 | 99.158759 | 0.1311507 | -4.83 | -0.3364820 | -0.63 | patient | M | T | patient |
| 516 | Vid23 | torso | 39 | 19.2 | 19.7 | 202.3415926 | 20.274593 | 111.308093 | 0.2483037 | -3.60 | -0.4507608 | -0.23 | patient | M | T | patient |
| 517 | Vid23 | torso | 40 | 19.7 | 20.2 | 196.2161111 | 95.295593 | 145.755852 | 0.3235761 | -1.27 | 0.0533167 | 3.90 | patient | M | T | patient |
| 518 | Vid23 | torso | 41 | 20.2 | 20.7 | 246.9792222 | 26.416815 | 136.698018 | 0.2360107 | 1.50 | -0.5285907 | -2.83 | patient | M | T | patient |
| 519 | Vid23 | torso | 45 | 22.2 | 22.7 | 204.5191111 | 8.430000 | 106.474556 | 0.3041917 | -4.80 | -0.2422545 | -2.80 | patient | M | T | patient |
| 520 | Vid23 | torso | 47 | 23.2 | 23.7 | 174.8881481 | 15.403926 | 95.146037 | 0.3081487 | 4.23 | -0.3110965 | -3.53 | patient | M | T | patient |
| 521 | Vid23 | torso | 48 | 23.7 | 24.2 | 208.7318519 | 69.619926 | 139.175889 | -0.1512523 | -5.00 | -0.5033741 | -0.80 | patient | M | T | patient |
| 522 | Vid23 | torso | 50 | 24.7 | 25.2 | 230.1274444 | 118.658222 | 174.392833 | -0.1405343 | -5.00 | -0.6608582 | 0.77 | therapist | M | T | patient |
| 523 | Vid23 | torso | 67 | 33.2 | 33.7 | 226.7577778 | 12.852593 | 119.805185 | -0.2077782 | 4.87 | -0.4105028 | -0.63 | patient | M | T | patient |
| 524 | Vid23 | torso | 73 | 36.2 | 36.7 | 244.9412222 | 16.212556 | 130.576889 | 0.1610332 | 5.00 | -0.4877063 | -0.67 | patient | M | T | patient |
| 525 | Vid23 | legs | 5 | 2.2 | 2.7 | 11.7857037 | 70.164333 | 40.975018 | 0.4554183 | 0.40 | -0.3192593 | 4.03 | therapist | M | T | therapist |
| 526 | Vid23 | legs | 8 | 3.7 | 4.2 | 26.6481852 | 297.123333 | 161.885759 | 0.4549289 | -1.00 | -0.2073541 | 4.90 | patient | M | T | therapist |
| 527 | Vid23 | legs | 23 | 11.2 | 11.7 | 5.6237407 | 47.558074 | 26.590907 | 0.1647988 | 1.30 | -0.5659134 | -3.13 | patient | M | T | therapist |
| 528 | Vid23 | legs | 25 | 12.2 | 12.7 | 0.4411111 | 39.231889 | 19.836500 | 0.2091498 | -5.00 | -0.4354571 | 1.80 | therapist | M | T | therapist |
| 529 | Vid23 | legs | 28 | 13.7 | 14.2 | 1.9988148 | 36.253222 | 19.126019 | 0.4323382 | 0.17 | -0.2400374 | -4.30 | therapist | M | T | therapist |
| 530 | Vid23 | legs | 41 | 20.2 | 20.7 | 0.3924444 | 71.667037 | 36.029741 | 0.2364617 | -0.13 | -0.3432567 | -3.70 | patient | M | T | therapist |
| 531 | Vid23 | legs | 50 | 24.7 | 25.2 | 1.0925185 | 43.377259 | 22.234889 | 0.3198800 | 5.00 | -0.1762792 | -4.03 | therapist | M | T | therapist |
| 532 | Vid23 | legs | 61 | 30.2 | 30.7 | 12.6347778 | 49.800963 | 31.217870 | 0.3747665 | -0.37 | -0.2355987 | 3.60 | patient | M | T | therapist |
| 533 | Vid23 | legs | 65 | 32.2 | 32.7 | 2.7611481 | 72.596667 | 37.678907 | 0.1938475 | 4.83 | -0.2608259 | -3.23 | patient | M | T | therapist |
| 534 | Vid23 | legs | 67 | 33.2 | 33.7 | 4.3588889 | 56.857370 | 30.608130 | 0.5644774 | -0.13 | -0.1580941 | 4.30 | patient | M | T | therapist |
| 535 | Vid23 | legs | 72 | 35.7 | 36.2 | 1.2915556 | 61.234667 | 31.263111 | 0.3970456 | -0.60 | -0.2920691 | -4.23 | patient | M | T | therapist |
| 536 | Vid23 | legs | 73 | 36.2 | 36.7 | 1.1123704 | 35.445815 | 18.279093 | 0.3515983 | 0.23 | -0.2123130 | -1.80 | therapist | M | T | therapist |
| 537 | Vid23 | legs | 80 | 39.7 | 40.2 | 1.5733333 | 72.928815 | 37.251074 | 0.3388242 | -1.97 | -0.3363205 | -0.50 | patient | M | T | therapist |
| 538 | Vid23 | legs | 81 | 40.2 | 40.7 | 4.0645185 | 84.039111 | 44.051815 | 0.4176047 | -5.00 | -0.4213051 | -1.27 | patient | M | T | therapist |
| 539 | Vid23 | legs | 82 | 40.7 | 41.2 | 0.3440000 | 47.068519 | 23.706259 | 0.3332512 | 2.30 | -0.2536430 | -1.00 | therapist | M | T | therapist |
| 540 | Vid23 | legs | 83 | 41.2 | 41.7 | 4.3878148 | 36.831926 | 20.609870 | 0.2309931 | 0.93 | -0.0755450 | -5.00 | therapist | M | T | therapist |
| 541 | Vid24 | head | 6 | 2.6 | 3.1 | 80.1714074 | 69.720852 | 74.946130 | 0.2608738 | -2.07 | -0.1836269 | 2.00 | patient | M | T | patient |
| 542 | Vid24 | head | 15 | 7.1 | 7.6 | 84.5563333 | 43.940667 | 64.248500 | -0.0419156 | -5.00 | -0.4680654 | -1.93 | patient | M | T | patient |
| 543 | Vid24 | head | 20 | 9.6 | 10.1 | 82.6776667 | 54.574000 | 68.625833 | 0.1843380 | -1.50 | -0.2230482 | -5.00 | patient | M | T | patient |
| 544 | Vid24 | head | 21 | 10.1 | 10.6 | 99.3532963 | 49.484148 | 74.418722 | 0.2195843 | 1.70 | -0.1979583 | -4.97 | therapist | M | T | patient |
| 545 | Vid24 | head | 38 | 18.6 | 19.1 | 88.2945185 | 54.715556 | 71.505037 | 0.0753123 | -3.00 | -0.3303058 | 3.00 | therapist | M | T | patient |
| 546 | Vid24 | head | 45 | 22.1 | 22.6 | 82.9430370 | 40.664444 | 61.803741 | 0.3862044 | 3.37 | -0.3591991 | -1.93 | therapist | M | T | patient |
| 547 | Vid24 | head | 54 | 26.6 | 27.1 | 85.4692222 | 34.591778 | 60.030500 | 0.0740834 | -3.20 | -0.3187826 | 0.00 | - | M | T | patient |
| 548 | Vid24 | head | 70 | 34.6 | 35.1 | 77.7503704 | 38.787259 | 58.268815 | 0.1395086 | -5.00 | -0.2340061 | 2.10 | therapist | M | T | patient |
| 549 | Vid24 | head | 72 | 35.6 | 36.1 | 70.8942963 | 52.052741 | 61.473518 | 0.0236589 | 1.77 | -0.3687125 | 4.13 | therapist | M | T | patient |
| 550 | Vid24 | head | 74 | 36.6 | 37.1 | 111.5076667 | 35.896593 | 73.702130 | 0.1357387 | -5.00 | -0.2526295 | -1.77 | patient | M | T | patient |
| 551 | Vid24 | head | 76 | 37.6 | 38.1 | 124.9090000 | 81.754815 | 103.331907 | -0.1932125 | -2.47 | -0.5684237 | 2.30 | therapist | M | T | patient |
| 552 | Vid24 | head | 80 | 39.6 | 40.1 | 181.4760370 | 64.357000 | 122.916518 | 0.1895207 | -2.47 | -0.2564859 | 5.00 | therapist | M | T | patient |
| 553 | Vid24 | head | 83 | 41.1 | 41.6 | 80.5015556 | 189.198148 | 134.849852 | -0.0396980 | -5.00 | -0.3716186 | 4.43 | therapist | M | T | therapist |
| 554 | Vid24 | head | 87 | 43.1 | 43.6 | 77.3092593 | 39.826667 | 58.567963 | 0.1698667 | -4.93 | -0.3179120 | -2.40 | patient | M | T | patient |
| 555 | Vid24 | head | 91 | 45.1 | 45.6 | 112.7987407 | 151.140481 | 131.969611 | 0.1771030 | -5.00 | -0.3571737 | 5.00 | therapist | M | T | therapist |
| 556 | Vid24 | head | 93 | 46.1 | 46.6 | 91.1527778 | 42.803333 | 66.978056 | 0.3394616 | 1.43 | -0.3289509 | -2.67 | therapist | M | T | patient |
| 557 | Vid24 | head | 99 | 49.1 | 49.6 | 86.9567407 | 39.283222 | 63.119982 | 0.5506702 | -2.00 | 0.0144764 | 5.00 | patient | M | T | patient |
| 558 | Vid24 | head | 102 | 50.6 | 51.1 | 110.7710370 | 39.980667 | 75.375852 | 0.4745654 | 5.00 | -0.4169026 | -2.60 | therapist | M | T | patient |
| 559 | Vid24 | torso | 9 | 4.1 | 4.6 | 503.6684815 | 116.649296 | 310.158889 | 0.1892241 | -4.17 | -0.2094887 | 3.03 | therapist | M | T | patient |
| 560 | Vid24 | torso | 11 | 5.1 | 5.6 | 572.2905185 | 102.413963 | 337.352241 | 0.2520987 | -5.00 | -0.2340199 | 2.60 | patient | M | T | patient |
| 561 | Vid24 | torso | 15 | 7.1 | 7.6 | 696.2859630 | 100.685407 | 398.485685 | -0.0099507 | -5.00 | -0.6693266 | 0.90 | therapist | M | T | patient |
| 562 | Vid24 | torso | 21 | 10.1 | 10.6 | 756.1697778 | 145.040296 | 450.605037 | 0.4649047 | 1.83 | -0.0939197 | -2.63 | therapist | M | T | patient |
| 563 | Vid24 | torso | 22 | 10.6 | 11.1 | 425.3435185 | 166.902741 | 296.123130 | 0.0189228 | 5.00 | -0.4373547 | 1.87 | therapist | M | T | patient |
| 564 | Vid24 | torso | 24 | 11.6 | 12.1 | 344.8907407 | 172.296778 | 258.593759 | -0.1503197 | -5.00 | -0.5872571 | 4.00 | therapist | M | T | patient |
| 565 | Vid24 | torso | 32 | 15.6 | 16.1 | 378.6409630 | 105.660704 | 242.150833 | 0.0772227 | -0.30 | -0.3292408 | -3.83 | patient | M | T | patient |
| 566 | Vid24 | torso | 33 | 16.1 | 16.6 | 360.2244815 | 514.967074 | 437.595778 | 0.2942371 | -2.70 | -0.5745210 | 5.00 | therapist | M | T | therapist |
| 567 | Vid24 | torso | 38 | 18.6 | 19.1 | 443.8558148 | 193.424259 | 318.640037 | 0.3065976 | -5.00 | -0.3082475 | -1.20 | patient | M | T | patient |
| 568 | Vid24 | torso | 45 | 22.1 | 22.6 | 657.3805185 | 169.847556 | 413.614037 | 0.3121928 | -5.00 | -0.3254390 | -2.20 | patient | M | T | patient |
| 569 | Vid24 | torso | 50 | 24.6 | 25.1 | 547.1572222 | 99.376407 | 323.266815 | 0.4926941 | 2.80 | -0.2335206 | -2.40 | therapist | M | T | patient |
| 570 | Vid24 | torso | 54 | 26.6 | 27.1 | 403.3040000 | 181.401815 | 292.352907 | -0.0366395 | 3.17 | -0.4714845 | -4.53 | patient | M | T | patient |
| 571 | Vid24 | torso | 71 | 35.1 | 35.6 | 335.4476667 | 702.344370 | 518.896018 | -0.1032958 | -5.00 | -0.5876974 | 2.67 | therapist | M | T | therapist |
| 572 | Vid24 | torso | 75 | 37.1 | 37.6 | 461.1650741 | 145.216963 | 303.191018 | 0.6653809 | -1.70 | -0.1291581 | 3.37 | patient | M | T | patient |
| 573 | Vid24 | torso | 78 | 38.6 | 39.1 | 496.1487407 | 270.895889 | 383.522315 | 0.0738886 | -5.00 | -0.4174895 | 5.00 | therapist | M | T | patient |
| 574 | Vid24 | torso | 80 | 39.6 | 40.1 | 500.8044074 | 172.390630 | 336.597518 | 0.3357326 | -2.77 | -0.3118734 | 5.00 | patient | M | T | patient |
| 575 | Vid24 | torso | 87 | 43.1 | 43.6 | 446.6886296 | 107.214630 | 276.951630 | 0.1021774 | -5.00 | -0.3577270 | -3.17 | patient | M | T | patient |
| 576 | Vid24 | torso | 99 | 49.1 | 49.6 | 526.7865926 | 108.972296 | 317.879444 | 0.5746976 | -1.00 | 0.0053245 | -5.00 | patient | M | T | patient |
| 577 | Vid24 | torso | 101 | 50.1 | 50.6 | 348.2388889 | 512.688185 | 430.463537 | 0.4882475 | -0.60 | -0.1385477 | 5.00 | patient | M | T | therapist |
| 578 | Vid24 | legs | 8 | 3.6 | 4.1 | 66.9763333 | 233.743518 | 150.359926 | 0.3747881 | 1.33 | -0.0888046 | -4.30 | therapist | M | T | therapist |
| 579 | Vid24 | legs | 9 | 4.1 | 4.6 | 91.6387778 | 29.562778 | 60.600778 | 0.0520861 | 3.17 | -0.4150645 | -1.83 | patient | M | T | patient |
| 580 | Vid24 | legs | 15 | 7.1 | 7.6 | 87.5794815 | 64.498296 | 76.038889 | 0.3502693 | -3.50 | -0.2212063 | 5.00 | patient | M | T | patient |
| 581 | Vid24 | legs | 19 | 9.1 | 9.6 | 197.0712963 | 72.365296 | 134.718296 | 0.4278752 | -0.27 | -0.2151013 | -4.83 | patient | M | T | patient |
| 582 | Vid24 | legs | 24 | 11.6 | 12.1 | 134.9165556 | 62.421667 | 98.669111 | 0.4734753 | -3.53 | -0.4273146 | 4.00 | patient | M | T | patient |
| 583 | Vid24 | legs | 27 | 13.1 | 13.6 | 78.2881852 | 32.524222 | 55.406204 | 0.4055568 | -0.20 | -0.1385420 | -4.60 | patient | M | T | patient |
| 584 | Vid24 | legs | 31 | 15.1 | 15.6 | 238.6634074 | 50.370370 | 144.516889 | 0.7017951 | 0.87 | -0.1044069 | -5.00 | therapist | M | T | patient |
| 585 | Vid24 | legs | 32 | 15.6 | 16.1 | 273.6722222 | 30.870037 | 152.271130 | -0.0014439 | 2.70 | -0.3968470 | -4.33 | patient | M | T | patient |
| 586 | Vid24 | legs | 33 | 16.1 | 16.6 | 133.3409259 | 253.095222 | 193.218074 | 0.4439827 | -2.83 | -0.0265969 | 3.83 | patient | M | T | therapist |
| 587 | Vid24 | legs | 40 | 19.6 | 20.1 | 127.0070370 | 94.018889 | 110.512963 | 0.3757505 | 1.47 | 0.0085131 | 4.13 | therapist | M | T | patient |
| 588 | Vid24 | legs | 43 | 21.1 | 21.6 | 493.9000000 | 58.704222 | 276.302111 | 0.5973139 | 0.70 | -0.0977496 | -5.00 | therapist | M | T | patient |
| 589 | Vid24 | legs | 46 | 22.6 | 23.1 | 72.3209630 | 55.290000 | 63.805481 | 0.2372599 | -4.93 | -0.3980328 | 5.00 | therapist | M | T | patient |
| 590 | Vid24 | legs | 50 | 24.6 | 25.1 | 286.5779259 | 39.595889 | 163.086907 | 0.3782901 | 5.00 | -0.1976193 | -2.40 | therapist | M | T | patient |
| 591 | Vid24 | legs | 53 | 26.1 | 26.6 | 506.1507407 | 66.499852 | 286.325296 | 0.4591657 | 0.97 | -0.2603983 | -4.83 | therapist | M | T | patient |
| 592 | Vid24 | legs | 59 | 29.1 | 29.6 | 206.8355185 | 41.908407 | 124.371963 | 0.2982860 | 1.53 | -0.2073715 | 5.00 | therapist | M | T | patient |
| 593 | Vid24 | legs | 61 | 30.1 | 30.6 | 160.6394074 | 77.199889 | 118.919648 | 0.5560351 | -0.17 | 0.0805594 | 2.93 | patient | M | T | patient |
| 594 | Vid24 | legs | 63 | 31.1 | 31.6 | 147.3917778 | 29.785556 | 88.588667 | 0.3639259 | -5.00 | -0.5418796 | 2.53 | therapist | M | T | patient |
| 595 | Vid24 | legs | 64 | 31.6 | 32.1 | 210.7857407 | 44.847111 | 127.816426 | 0.4734501 | 2.93 | 0.1365390 | 5.00 | therapist | M | T | patient |
| 596 | Vid24 | legs | 65 | 32.1 | 32.6 | 113.4408519 | 84.970037 | 99.205444 | 0.2434451 | -4.10 | -0.2755299 | 3.67 | therapist | M | T | patient |
| 597 | Vid24 | legs | 67 | 33.1 | 33.6 | 89.3473704 | 31.771370 | 60.559370 | 0.4152144 | 2.67 | 0.1201928 | -1.23 | therapist | M | T | patient |
| 598 | Vid24 | legs | 70 | 34.6 | 35.1 | 160.1987778 | 220.782222 | 190.490500 | 0.2069163 | 2.13 | -0.2565827 | -1.53 | patient | M | T | therapist |
| 599 | Vid24 | legs | 71 | 35.1 | 35.6 | 154.8610370 | 207.348037 | 181.104537 | 0.0673143 | 1.30 | -0.3279948 | -3.10 | patient | M | T | therapist |
| 600 | Vid24 | legs | 76 | 37.6 | 38.1 | 257.9052593 | 53.375556 | 155.640407 | 0.0738131 | 2.70 | -0.4667423 | -2.80 | patient | M | T | patient |
| 601 | Vid24 | legs | 80 | 39.6 | 40.1 | 187.8182963 | 29.088741 | 108.453519 | 0.3633540 | -2.57 | -0.1402377 | -4.63 | patient | M | T | patient |
| 602 | Vid24 | legs | 86 | 42.6 | 43.1 | 86.5820000 | 41.666222 | 64.124111 | 0.2318392 | 3.60 | -0.3569485 | -1.87 | patient | M | T | patient |
| 603 | Vid24 | legs | 93 | 46.1 | 46.6 | 81.8738519 | 67.348889 | 74.611370 | 0.3583518 | 5.00 | -0.2714127 | -4.60 | therapist | M | T | patient |
| 604 | Vid24 | legs | 102 | 50.6 | 51.1 | 132.4467407 | 44.366667 | 88.406704 | 0.1554196 | -1.20 | -0.1357624 | 1.53 | patient | M | T | patient |
| 605 | Vid25 | head | 11 | 5.1 | 5.6 | 243.1604444 | 78.681889 | 160.921167 | 0.2434412 | 1.63 | -0.3054111 | 3.87 | therapist | H | C | patient |
| 606 | Vid25 | head | 26 | 12.6 | 13.1 | 146.0307407 | 104.476482 | 125.253611 | 0.2531372 | 0.53 | -0.2196390 | -2.27 | therapist | H | C | patient |
| 607 | Vid25 | head | 29 | 14.1 | 14.6 | 123.5795185 | 47.720815 | 85.650167 | 0.0063333 | -5.00 | -0.2444560 | 0.33 | therapist | H | C | patient |
| 608 | Vid25 | head | 30 | 14.6 | 15.1 | 155.1707407 | 76.200741 | 115.685741 | 0.0078321 | 1.97 | -0.4065290 | -0.87 | patient | H | C | patient |
| 609 | Vid25 | head | 37 | 18.1 | 18.6 | 119.5815556 | 79.467630 | 99.524593 | 0.5158156 | 1.73 | -0.1432213 | -5.00 | therapist | H | C | patient |
| 610 | Vid25 | head | 38 | 18.6 | 19.1 | 99.8988889 | 220.712852 | 160.305870 | 0.0193722 | 1.13 | -0.3462657 | 3.63 | therapist | H | C | therapist |
| 611 | Vid25 | head | 42 | 20.6 | 21.1 | 140.9154444 | 51.756518 | 96.335982 | -0.0484269 | -5.00 | -0.6529793 | -0.07 | - | H | C | patient |
| 612 | Vid25 | head | 46 | 22.6 | 23.1 | 121.7157037 | 96.594444 | 109.155074 | 0.1807157 | -2.33 | -0.2743947 | 2.00 | therapist | H | C | patient |
| 613 | Vid25 | head | 47 | 23.1 | 23.6 | 108.8728148 | 76.231370 | 92.552093 | 0.1050284 | 5.00 | -0.5187926 | -2.83 | patient | H | C | patient |
| 614 | Vid25 | head | 49 | 24.1 | 24.6 | 146.6041111 | 177.430222 | 162.017167 | 0.3424912 | 4.80 | -0.4232948 | -1.27 | patient | H | C | therapist |
| 615 | Vid25 | head | 50 | 24.6 | 25.1 | 112.8344444 | 48.269556 | 80.552000 | 0.1232956 | 2.67 | -0.3789264 | 0.10 | - | H | C | patient |
| 616 | Vid25 | torso | 13 | 6.1 | 6.6 | 233.1224444 | 342.809889 | 287.966167 | -0.0657056 | 3.30 | -0.6513464 | -1.27 | patient | H | C | therapist |
| 617 | Vid25 | torso | 20 | 9.6 | 10.1 | 316.0753704 | 266.214926 | 291.145148 | 0.3733587 | -4.60 | -0.2018828 | 3.40 | patient | H | C | patient |
| 618 | Vid25 | torso | 26 | 12.6 | 13.1 | 457.8792963 | 412.520630 | 435.199963 | 0.3620728 | 0.80 | -0.0121751 | -2.87 | therapist | H | C | patient |
| 619 | Vid25 | torso | 30 | 14.6 | 15.1 | 275.0578519 | 210.765481 | 242.911667 | 0.1311628 | 4.93 | -0.3698832 | -0.87 | patient | H | C | patient |
| 620 | Vid25 | torso | 46 | 22.6 | 23.1 | 359.6595556 | 385.058000 | 372.358778 | 0.3795854 | -2.33 | -0.2479971 | -5.00 | patient | H | C | - |
| 621 | Vid25 | torso | 50 | 24.6 | 25.1 | 366.6260741 | 196.372222 | 281.499148 | 0.0942207 | 3.37 | -0.3806351 | 0.00 | - | H | C | patient |
| 622 | Vid25 | torso | 52 | 25.6 | 26.1 | 311.5477778 | 322.174222 | 316.861000 | 0.3965989 | -5.00 | -0.5449340 | 5.00 | therapist | H | C | - |
| 623 | Vid25 | torso | 53 | 26.1 | 26.6 | 281.1930741 | 366.461481 | 323.827278 | 0.1745541 | 4.73 | -0.6787940 | -0.53 | patient | H | C | therapist |
| 624 | Vid25 | torso | 54 | 26.6 | 27.1 | 456.2798519 | 186.011111 | 321.145482 | 0.2158839 | 5.00 | -0.1399538 | -0.97 | therapist | H | C | patient |
| 625 | Vid25 | torso | 55 | 27.1 | 27.6 | 438.6556667 | 184.328148 | 311.491907 | 0.0228245 | 5.00 | -0.4361551 | 0.00 | - | H | C | patient |
| 626 | Vid25 | torso | 56 | 27.6 | 28.1 | 244.0238148 | 209.679333 | 226.851574 | 0.2531418 | -2.80 | -0.5215656 | 1.67 | therapist | H | C | patient |
| 627 | Vid25 | torso | 57 | 28.1 | 28.6 | 436.2423704 | 235.335667 | 335.789018 | 0.1267750 | -4.93 | -0.3937522 | 0.00 | - | H | C | patient |
| 628 | Vid25 | legs | 1 | 0.1 | 0.6 | 86.2422222 | 178.642667 | 132.442444 | 0.3736963 | 5.00 | -0.2723839 | -5.00 | therapist | H | C | therapist |
| 629 | Vid25 | legs | 10 | 4.6 | 5.1 | 16.6844444 | 60.617778 | 38.651111 | 0.5012462 | -1.20 | -0.1499675 | -5.00 | patient | H | C | therapist |
| 630 | Vid25 | legs | 13 | 6.1 | 6.6 | 12.2000000 | 30.990926 | 21.595463 | 0.0391230 | -3.80 | -0.3875804 | 0.07 | - | H | C | therapist |
| 631 | Vid25 | legs | 19 | 9.1 | 9.6 | 310.5526667 | 53.425556 | 181.989111 | 0.5455642 | 0.27 | -0.2036154 | 5.00 | therapist | H | C | patient |
| 632 | Vid25 | legs | 23 | 11.1 | 11.6 | 33.8831852 | 60.429185 | 47.156185 | 0.4215361 | 3.60 | -0.3427017 | -0.07 | therapist | H | C | therapist |
| 633 | Vid25 | legs | 26 | 12.6 | 13.1 | 105.9726296 | 294.770407 | 200.371519 | 0.3541854 | 3.93 | -0.2079305 | -2.20 | therapist | H | C | therapist |
| 634 | Vid25 | legs | 30 | 14.6 | 15.1 | 269.0051111 | 63.448667 | 166.226889 | 0.5186606 | 2.13 | 0.1252757 | -0.40 | therapist | H | C | patient |
| 635 | Vid25 | legs | 37 | 18.1 | 18.6 | 212.2100741 | 38.754704 | 125.482389 | 0.5677019 | 1.63 | -0.1456601 | -5.00 | therapist | H | C | patient |
| 636 | Vid25 | legs | 38 | 18.6 | 19.1 | 38.1504815 | 213.416741 | 125.783611 | 0.3535242 | 1.40 | -0.3544929 | 4.17 | therapist | H | C | therapist |
| 637 | Vid25 | legs | 40 | 19.6 | 20.1 | 20.5388889 | 222.029630 | 121.284259 | 0.3155010 | 1.40 | -0.3565400 | -3.13 | patient | H | C | therapist |
| 638 | Vid25 | legs | 46 | 22.6 | 23.1 | 32.2037407 | 323.472222 | 177.837982 | 0.2928748 | 5.00 | -0.3513683 | -5.00 | patient | H | C | therapist |
| 639 | Vid25 | legs | 47 | 23.1 | 23.6 | 244.8773333 | 65.432815 | 155.155074 | 0.3986800 | 2.40 | -0.1341433 | -5.00 | therapist | H | C | patient |
| 640 | Vid25 | legs | 49 | 24.1 | 24.6 | 270.6551111 | 124.823333 | 197.739222 | 0.0158207 | 5.00 | -0.2783853 | 0.00 | - | H | C | patient |
| 641 | Vid25 | legs | 50 | 24.6 | 25.1 | 17.3761111 | 68.568889 | 42.972500 | 0.4743979 | 2.80 | 0.0276425 | -3.20 | therapist | H | C | therapist |
| 642 | Vid25 | legs | 53 | 26.1 | 26.6 | 16.0600000 | 60.246852 | 38.153426 | 0.3688009 | -4.33 | -0.3712911 | -0.73 | patient | H | C | therapist |
| 643 | Vid26 | head | 1 | 2.8 | 3.2 | 56.1667778 | 185.722519 | 120.944648 | 0.3310394 | 3.17 | -0.1219496 | -4.97 | therapist | M | T | therapist |
| 644 | Vid26 | head | 8 | 6.3 | 6.8 | 24.0534815 | 50.198481 | 37.125982 | 0.3636639 | 1.07 | -0.1860534 | -3.10 | therapist | M | T | therapist |
| 645 | Vid26 | head | 9 | 6.8 | 7.2 | 13.7026296 | 59.572259 | 36.637444 | 0.2059073 | -3.83 | -0.5635044 | 2.70 | therapist | M | T | therapist |
| 646 | Vid26 | head | 14 | 9.3 | 9.8 | 17.2352593 | 37.320667 | 27.277963 | 0.1776040 | 3.97 | -0.0456954 | -4.97 | therapist | M | T | therapist |
| 647 | Vid26 | head | 16 | 10.3 | 10.8 | 26.1139259 | 144.154000 | 85.133963 | 0.2434124 | 1.70 | -0.5283880 | -2.83 | patient | M | T | therapist |
| 648 | Vid26 | head | 36 | 20.3 | 20.8 | 20.2999630 | 49.450963 | 34.875463 | -0.3553536 | 5.00 | -0.6199399 | -1.67 | patient | M | T | therapist |
| 649 | Vid26 | head | 49 | 26.8 | 27.2 | 38.5925926 | 59.813704 | 49.203148 | 0.4399501 | -3.03 | -0.0093211 | 4.97 | patient | M | T | therapist |
| 650 | Vid26 | head | 50 | 27.3 | 27.8 | 27.8394815 | 75.176222 | 51.507852 | 0.0964587 | 4.23 | -0.6716295 | -1.53 | patient | M | T | therapist |
| 651 | Vid26 | head | 60 | 32.3 | 32.8 | 24.7526296 | 187.373556 | 106.063093 | 0.4781681 | -3.97 | -0.2497938 | 2.30 | patient | M | T | therapist |
| 652 | Vid26 | head | 65 | 34.8 | 35.2 | 20.2461852 | 37.305926 | 28.776056 | -0.0133311 | 5.00 | -0.7302558 | -0.07 | - | M | T | therapist |
| 653 | Vid26 | head | 69 | 36.8 | 37.2 | 16.6462963 | 71.608407 | 44.127352 | 0.4214832 | -0.40 | 0.1202088 | -4.43 | patient | M | T | therapist |
| 654 | Vid26 | head | 81 | 42.8 | 43.2 | 25.4619630 | 175.581333 | 100.521648 | 0.3642243 | 5.00 | -0.2388352 | -4.67 | therapist | M | T | therapist |
| 655 | Vid26 | head | 82 | 43.3 | 43.8 | 18.1465185 | 50.731148 | 34.438833 | 0.1664486 | 5.00 | -0.3977453 | -1.77 | patient | M | T | therapist |
| 656 | Vid26 | head | 83 | 43.8 | 44.2 | 13.5097778 | 141.342667 | 77.426222 | 0.2608795 | -4.23 | -0.4000778 | 0.07 | - | M | T | therapist |
| 657 | Vid26 | head | 84 | 44.3 | 44.8 | 45.1195556 | 44.285593 | 44.702574 | 0.3266797 | 0.80 | -0.2283840 | -2.30 | therapist | M | T | - |
| 658 | Vid26 | head | 89 | 46.8 | 47.2 | 15.4870741 | 200.912741 | 108.199907 | 0.0021615 | 0.40 | -0.1667896 | -4.80 | patient | M | T | therapist |
| 659 | Vid26 | head | 99 | 51.8 | 52.2 | 38.0702222 | 102.369963 | 70.220093 | 0.4936008 | -1.70 | 0.0218593 | 4.67 | patient | M | T | therapist |
| 660 | Vid26 | head | 100 | 52.3 | 52.8 | 36.1364074 | 91.042852 | 63.589630 | -0.3663859 | -5.00 | -0.7191233 | 2.17 | therapist | M | T | therapist |
| 661 | Vid26 | torso | 1 | 2.8 | 3.2 | 304.9687778 | 1310.373889 | 807.671333 | 0.3137236 | 4.73 | -0.5417630 | -1.00 | patient | M | T | therapist |
| 662 | Vid26 | torso | 9 | 6.8 | 7.2 | 180.1662963 | 397.628111 | 288.897204 | 0.1479203 | 5.00 | -0.3367664 | 1.13 | therapist | M | T | therapist |
| 663 | Vid26 | torso | 36 | 20.3 | 20.8 | 383.0903333 | 357.596000 | 370.343167 | -0.0166875 | -2.63 | -0.5699495 | 3.63 | therapist | M | T | - |
| 664 | Vid26 | torso | 40 | 22.3 | 22.8 | 256.1679259 | 506.901630 | 381.534778 | -0.0571240 | -3.57 | -0.3370789 | 4.17 | therapist | M | T | therapist |
| 665 | Vid26 | torso | 47 | 25.8 | 26.2 | 161.5156296 | 196.963185 | 179.239407 | 0.3209841 | 2.23 | -0.0116675 | -2.43 | therapist | M | T | therapist |
| 666 | Vid26 | torso | 53 | 28.8 | 29.2 | 234.9298148 | 231.202444 | 233.066130 | 0.4582107 | 3.83 | -0.5010658 | -4.57 | patient | M | T | - |
| 667 | Vid26 | torso | 55 | 29.8 | 30.2 | 165.0492593 | 343.748518 | 254.398889 | 0.4430249 | -1.97 | -0.1076406 | 5.00 | patient | M | T | therapist |
| 668 | Vid26 | torso | 60 | 32.3 | 32.8 | 322.3378148 | 973.700111 | 648.018963 | 0.5469078 | -3.70 | -0.2506017 | 4.97 | patient | M | T | therapist |
| 669 | Vid26 | torso | 81 | 42.8 | 43.2 | 240.5293333 | 953.055000 | 596.792167 | 0.4897038 | 2.77 | -0.1353030 | -4.93 | therapist | M | T | therapist |
| 670 | Vid26 | torso | 82 | 43.3 | 43.8 | 154.2024815 | 232.841519 | 193.522000 | 0.0510496 | 5.00 | -0.4565553 | -2.70 | patient | M | T | therapist |
| 671 | Vid26 | torso | 89 | 46.8 | 47.2 | 270.4671481 | 515.996185 | 393.231667 | -0.1150276 | -2.23 | -0.2684163 | -4.97 | patient | M | T | therapist |
| 672 | Vid26 | torso | 99 | 51.8 | 52.2 | 203.4655185 | 331.921518 | 267.693518 | 0.6749000 | 0.93 | 0.1821598 | 5.00 | therapist | M | T | therapist |
| 673 | Vid26 | torso | 100 | 52.3 | 52.8 | 259.0774815 | 312.528185 | 285.802833 | -0.0271014 | -5.00 | -0.6577334 | 2.03 | therapist | M | T | therapist |
| 674 | Vid26 | torso | 101 | 52.8 | 53.2 | 236.9931111 | 188.405482 | 212.699296 | -0.2194661 | -5.00 | -0.5966603 | -2.30 | patient | M | T | patient |
| 675 | Vid26 | legs | 1 | 2.8 | 3.2 | 2.2923704 | 80.371000 | 41.331685 | 0.3513795 | 3.17 | -0.4475941 | -2.03 | patient | M | T | therapist |
| 676 | Vid26 | legs | 15 | 9.8 | 10.2 | 67.8782593 | 154.323407 | 111.100833 | 0.3101381 | 2.90 | -0.1944763 | -2.57 | therapist | M | T | therapist |
| 677 | Vid26 | legs | 16 | 10.3 | 10.8 | 19.1288148 | 16.437037 | 17.782926 | 0.1544797 | -3.43 | -0.2362696 | -0.07 | - | M | T | patient |
| 678 | Vid26 | legs | 25 | 14.8 | 15.2 | 4.8066667 | 11.542852 | 8.174759 | 0.3938486 | -0.67 | -0.1990128 | 3.50 | patient | M | T | therapist |
| 679 | Vid26 | legs | 34 | 19.3 | 19.8 | 2.9777778 | 17.435630 | 10.206704 | 0.2198192 | 0.13 | -0.1347087 | 4.97 | therapist | M | T | therapist |
| 680 | Vid26 | legs | 40 | 22.3 | 22.8 | 58.5096296 | 44.314222 | 51.411926 | 0.4379051 | -3.40 | -0.1844982 | 2.03 | patient | M | T | patient |
| 681 | Vid26 | legs | 42 | 23.3 | 23.8 | 15.0648889 | 23.982222 | 19.523556 | 0.1445845 | 2.23 | -0.3090985 | -4.70 | patient | M | T | therapist |
| 682 | Vid26 | legs | 55 | 29.8 | 30.2 | 12.8324444 | 76.869667 | 44.851056 | 0.4122166 | -0.80 | -0.0142306 | -4.17 | patient | M | T | therapist |
| 683 | Vid26 | legs | 57 | 30.8 | 31.2 | 3.4477037 | 15.895407 | 9.671556 | 0.3040410 | -4.07 | -0.3774956 | 4.17 | therapist | M | T | therapist |
| 684 | Vid26 | legs | 59 | 31.8 | 32.2 | 1.4822222 | 130.902111 | 66.192167 | 0.5112774 | -0.93 | 0.0247217 | 5.00 | patient | M | T | therapist |
| 685 | Vid26 | legs | 66 | 35.3 | 35.8 | 4.8794815 | 23.943296 | 14.411389 | 0.4452153 | 4.77 | -0.1176690 | -2.03 | therapist | M | T | therapist |
| 686 | Vid26 | legs | 68 | 36.3 | 36.8 | 66.4330741 | 70.203852 | 68.318463 | 0.2962689 | 4.77 | -0.3566630 | -5.00 | patient | M | T | - |
| 687 | Vid26 | legs | 70 | 37.3 | 37.8 | 23.7017778 | 135.288074 | 79.494926 | 0.0374952 | 0.67 | -0.1777365 | -3.00 | patient | M | T | therapist |
| 688 | Vid26 | legs | 73 | 38.8 | 39.2 | 42.2000741 | 32.864889 | 37.532482 | 0.4833530 | 1.03 | -0.3267334 | -4.97 | therapist | M | T | patient |
| 689 | Vid26 | legs | 82 | 43.3 | 43.8 | 51.6894074 | 17.197926 | 34.443667 | 0.3395230 | 3.60 | -0.4566493 | -5.00 | patient | M | T | patient |
| 690 | Vid26 | legs | 83 | 43.8 | 44.2 | 11.9705926 | 59.888519 | 35.929556 | 0.2278330 | -2.10 | -0.1977802 | -0.47 | patient | M | T | therapist |
| 691 | Vid26 | legs | 84 | 44.3 | 44.8 | 211.2644074 | 30.691741 | 120.978074 | 0.2356653 | 1.07 | -0.2557946 | -4.97 | patient | M | T | patient |
| 692 | Vid26 | legs | 85 | 44.8 | 45.2 | 23.0258148 | 13.662259 | 18.344037 | 0.2308187 | -3.30 | -0.4037652 | 2.57 | therapist | M | T | patient |
| 693 | Vid26 | legs | 89 | 46.8 | 47.2 | 122.1622222 | 62.785778 | 92.474000 | 0.4673918 | 2.63 | 0.0747499 | -5.00 | therapist | M | T | patient |
| 694 | Vid26 | legs | 90 | 47.3 | 47.8 | 118.7147407 | 75.330518 | 97.022630 | 0.1722917 | 5.00 | -0.3905639 | -5.00 | patient | M | T | patient |
| 695 | Vid26 | legs | 91 | 47.8 | 48.2 | 24.5730370 | 24.310778 | 24.441907 | 0.3336768 | -3.57 | -0.2437606 | 1.90 | patient | M | T | - |
| 696 | Vid26 | legs | 92 | 48.3 | 48.8 | 22.9781111 | 43.273852 | 33.125982 | 0.2305912 | -2.10 | -0.1616112 | 1.23 | patient | M | T | therapist |
| 697 | Vid26 | legs | 94 | 49.3 | 49.8 | 40.6244815 | 29.275556 | 34.950018 | 0.3867385 | 1.83 | -0.0604325 | 5.00 | therapist | M | T | patient |
| 698 | Vid26 | legs | 95 | 49.8 | 50.2 | 3.2154815 | 9.435704 | 6.325593 | 0.2066442 | 4.20 | -0.1259064 | -3.90 | therapist | M | T | therapist |
| 699 | Vid26 | legs | 100 | 52.3 | 52.8 | 8.3061481 | 51.563370 | 29.934759 | 0.0293755 | 0.40 | -0.4290918 | -1.40 | patient | M | T | therapist |
| 700 | Vid26 | legs | 101 | 52.8 | 53.2 | 13.9367407 | 34.160222 | 24.048482 | 0.0362690 | 4.47 | -0.3270743 | 0.73 | therapist | M | T | therapist |
| 701 | Vid27 | head | 1 | 0.8 | 1.2 | 43.7757037 | 184.659222 | 114.217463 | 0.2605710 | -4.70 | -0.1524612 | -0.57 | patient | H | T | therapist |
| 702 | Vid27 | head | 12 | 6.3 | 6.8 | 52.6671852 | 207.917333 | 130.292259 | 0.3777718 | -0.60 | -0.1192124 | 3.13 | patient | H | T | therapist |
| 703 | Vid27 | head | 14 | 7.3 | 7.8 | 31.8115556 | 198.676926 | 115.244241 | 0.2102550 | -3.70 | -0.4182848 | 3.63 | therapist | H | T | therapist |
| 704 | Vid27 | head | 16 | 8.3 | 8.8 | 62.6664815 | 288.295037 | 175.480759 | 0.3229882 | -5.00 | -0.4535184 | -0.20 | patient | H | T | therapist |
| 705 | Vid27 | head | 20 | 10.3 | 10.8 | 65.8490370 | 258.908000 | 162.378519 | 0.3038769 | 1.03 | -0.5362323 | 5.00 | therapist | H | T | therapist |
| 706 | Vid27 | head | 21 | 10.8 | 11.2 | 36.0160370 | 297.172148 | 166.594093 | 0.4059422 | -4.57 | 0.1117161 | 5.00 | patient | H | T | therapist |
| 707 | Vid27 | head | 29 | 14.8 | 15.2 | 36.5869630 | 171.016148 | 103.801556 | 0.3404697 | -4.63 | -0.5369363 | -0.70 | patient | H | T | therapist |
| 708 | Vid27 | head | 33 | 16.8 | 17.2 | 28.8482593 | 361.772407 | 195.310333 | 0.5759082 | 0.80 | -0.1442670 | -2.83 | therapist | H | T | therapist |
| 709 | Vid27 | head | 34 | 17.3 | 17.8 | 42.6377778 | 192.383741 | 117.510759 | 0.4411436 | -2.17 | -0.3593559 | 2.63 | patient | H | T | therapist |
| 710 | Vid27 | head | 36 | 18.3 | 18.8 | 103.3964074 | 187.610556 | 145.503481 | 0.3445669 | -3.30 | -0.4665121 | 2.10 | therapist | H | T | therapist |
| 711 | Vid27 | head | 60 | 30.3 | 30.8 | 38.2051111 | 218.967407 | 128.586259 | 0.0979081 | -5.00 | -0.4408895 | 2.40 | therapist | H | T | therapist |
| 712 | Vid27 | head | 64 | 32.3 | 32.8 | 38.2913333 | 171.589259 | 104.940296 | 0.1376735 | 5.00 | -0.3366340 | -3.37 | patient | H | T | therapist |
| 713 | Vid27 | head | 65 | 32.8 | 33.2 | 40.5312593 | 172.970333 | 106.750796 | 0.5015650 | 5.00 | -0.4834503 | -5.00 | therapist | H | T | therapist |
| 714 | Vid27 | head | 66 | 33.3 | 33.8 | 31.0471852 | 192.551481 | 111.799333 | 0.1381199 | -5.00 | -0.5626135 | 4.97 | therapist | H | T | therapist |
| 715 | Vid27 | head | 67 | 33.8 | 34.2 | 174.5387778 | 232.369889 | 203.454333 | 0.3195533 | -0.80 | -0.4530009 | 4.97 | therapist | H | T | therapist |
| 716 | Vid27 | head | 84 | 42.3 | 42.8 | 92.4016296 | 286.777852 | 189.589741 | 0.5051393 | -3.83 | -0.2116199 | -0.20 | patient | H | T | therapist |
| 717 | Vid27 | head | 85 | 42.8 | 43.2 | 36.1340741 | 213.651407 | 124.892741 | 0.1829607 | -0.53 | -0.2299945 | -4.27 | patient | H | T | therapist |
| 718 | Vid27 | head | 89 | 44.8 | 45.2 | 39.1566667 | 269.500074 | 154.328370 | 0.3698994 | -0.53 | -0.0601275 | 5.00 | patient | H | T | therapist |
| 719 | Vid27 | head | 94 | 47.3 | 47.8 | 42.4840000 | 236.019926 | 139.251963 | 0.2247048 | -0.93 | -0.3603776 | 2.20 | therapist | H | T | therapist |
| 720 | Vid27 | torso | 1 | 0.8 | 1.2 | 251.4838148 | 576.013482 | 413.748648 | 0.4230659 | -3.40 | 0.1819993 | 4.53 | patient | H | T | therapist |
| 721 | Vid27 | torso | 4 | 2.3 | 2.8 | 162.1506296 | 327.586000 | 244.868315 | 0.1026744 | -5.00 | -0.3381123 | 3.50 | therapist | H | T | therapist |
| 722 | Vid27 | torso | 5 | 2.8 | 3.2 | 54.8870741 | 378.770593 | 216.828833 | 0.4237978 | -1.30 | -0.2468682 | 4.80 | patient | H | T | therapist |
| 723 | Vid27 | torso | 8 | 4.3 | 4.8 | 132.0991111 | 303.889000 | 217.994056 | 0.1298706 | -3.90 | -0.3712373 | 3.20 | therapist | H | T | therapist |
| 724 | Vid27 | torso | 14 | 7.3 | 7.8 | 72.7356296 | 304.654333 | 188.694982 | 0.6779498 | 0.97 | -0.0971246 | -5.00 | therapist | H | T | therapist |
| 725 | Vid27 | torso | 16 | 8.3 | 8.8 | 57.0984815 | 806.886926 | 431.992704 | 0.3184517 | 3.90 | -0.2212162 | 0.03 | therapist | H | T | therapist |
| 726 | Vid27 | torso | 17 | 8.8 | 9.2 | 51.2366667 | 1089.685518 | 570.461093 | 0.3337636 | 0.23 | -0.5007134 | 5.00 | therapist | H | T | therapist |
| 727 | Vid27 | torso | 20 | 10.3 | 10.8 | 210.0455926 | 529.353704 | 369.699648 | 0.2652447 | 1.70 | -0.4448301 | 5.00 | therapist | H | T | therapist |
| 728 | Vid27 | torso | 27 | 13.8 | 14.2 | 119.1577037 | 317.629185 | 218.393444 | 0.4320194 | -5.00 | -0.3984449 | 4.77 | patient | H | T | therapist |
| 729 | Vid27 | torso | 33 | 16.8 | 17.2 | 46.9395926 | 1497.368407 | 772.154000 | 0.3952096 | -1.33 | -0.1263530 | 1.20 | patient | H | T | therapist |
| 730 | Vid27 | torso | 35 | 17.8 | 18.2 | 72.5061111 | 291.041370 | 181.773741 | 0.3102625 | -2.57 | -0.2981716 | -0.27 | patient | H | T | therapist |
| 731 | Vid27 | torso | 40 | 20.3 | 20.8 | 48.5685556 | 820.499593 | 434.534074 | 0.1949603 | -0.20 | -0.2247683 | 3.90 | therapist | H | T | therapist |
| 732 | Vid27 | torso | 46 | 23.3 | 23.8 | 65.3813704 | 570.941333 | 318.161352 | 0.4160600 | 0.97 | -0.0639432 | -3.10 | therapist | H | T | therapist |
| 733 | Vid27 | torso | 51 | 25.8 | 26.2 | 49.7703704 | 542.002593 | 295.886482 | 0.3959561 | -1.30 | -0.1178270 | 3.73 | patient | H | T | therapist |
| 734 | Vid27 | torso | 52 | 26.3 | 26.8 | 85.8402593 | 639.735444 | 362.787852 | 0.2153417 | -5.00 | -0.1884228 | 3.40 | patient | H | T | therapist |
| 735 | Vid27 | torso | 53 | 26.8 | 27.2 | 152.4847407 | 360.997296 | 256.741018 | -0.2809146 | -2.73 | -0.6008683 | 0.83 | therapist | H | T | therapist |
| 736 | Vid27 | torso | 60 | 30.3 | 30.8 | 141.5845185 | 540.710222 | 341.147370 | 0.1741416 | -5.00 | -0.3994392 | -0.77 | patient | H | T | therapist |
| 737 | Vid27 | torso | 84 | 42.3 | 42.8 | 91.6855556 | 527.076259 | 309.380907 | 0.3825062 | -2.77 | -0.2664448 | 4.67 | patient | H | T | therapist |
| 738 | Vid27 | torso | 86 | 43.3 | 43.8 | 74.8787407 | 925.424222 | 500.151481 | 0.3866290 | 0.93 | -0.2344501 | 4.93 | therapist | H | T | therapist |
| 739 | Vid27 | torso | 88 | 44.3 | 44.8 | 48.9011481 | 418.917815 | 233.909481 | 0.4450470 | 1.17 | -0.1654819 | 4.97 | therapist | H | T | therapist |
| 740 | Vid27 | torso | 89 | 44.8 | 45.2 | 71.1229630 | 517.491333 | 294.307148 | 0.1555724 | -2.77 | -0.2419059 | 1.13 | therapist | H | T | therapist |
| 741 | Vid27 | torso | 92 | 46.3 | 46.8 | 129.6674444 | 416.014148 | 272.840796 | 0.4141185 | 0.80 | 0.1801635 | -1.23 | therapist | H | T | therapist |
| 742 | Vid27 | torso | 94 | 47.3 | 47.8 | 70.2851111 | 589.865556 | 330.075333 | 0.1842993 | -1.07 | -0.2649442 | 1.80 | therapist | H | T | therapist |
| 743 | Vid27 | legs | 1 | 0.8 | 1.2 | 31.9863333 | 48.323630 | 40.154981 | 0.0530647 | -4.37 | -0.3350840 | 4.07 | therapist | H | T | therapist |
| 744 | Vid27 | legs | 3 | 1.8 | 2.2 | 32.4871481 | 31.823667 | 32.155407 | 0.0610077 | -3.83 | -0.3032155 | 3.77 | therapist | H | T | - |
| 745 | Vid27 | legs | 4 | 2.3 | 2.8 | 26.2922593 | 20.257741 | 23.275000 | 0.4195279 | 1.27 | 0.0567319 | 5.00 | therapist | H | T | patient |
| 746 | Vid27 | legs | 8 | 4.3 | 4.8 | 29.2963704 | 24.737778 | 27.017074 | -0.0157350 | 3.37 | -0.5898566 | -1.23 | patient | H | T | patient |
| 747 | Vid27 | legs | 16 | 8.3 | 8.8 | 25.9507407 | 21.267630 | 23.609185 | 0.1444105 | 5.00 | 0.0029123 | -3.37 | therapist | H | T | patient |
| 748 | Vid27 | legs | 21 | 10.8 | 11.2 | 25.2352222 | 72.793000 | 49.014111 | 0.4406066 | 3.10 | 0.1442757 | -3.00 | therapist | H | T | therapist |
| 749 | Vid27 | legs | 38 | 19.3 | 19.8 | 133.7500741 | 28.418370 | 81.084222 | 0.3215945 | -2.97 | -0.5393983 | 2.10 | therapist | H | T | patient |
| 750 | Vid27 | legs | 39 | 19.8 | 20.2 | 240.2004444 | 26.097815 | 133.149130 | 0.5426380 | 0.37 | -0.2359155 | 4.47 | therapist | H | T | patient |
| 751 | Vid27 | legs | 41 | 20.8 | 21.2 | 28.8118148 | 20.997852 | 24.904833 | 0.3602459 | 4.93 | -0.3916142 | -5.00 | patient | H | T | patient |
| 752 | Vid27 | legs | 53 | 26.8 | 27.2 | 41.7500000 | 43.059704 | 42.404852 | 0.0876285 | -2.93 | -0.3188179 | 1.17 | therapist | H | T | - |
| 753 | Vid27 | legs | 56 | 28.3 | 28.8 | 29.3211852 | 49.454185 | 39.387685 | 0.5092305 | 0.63 | -0.1576738 | 5.00 | therapist | H | T | therapist |
| 754 | Vid27 | legs | 60 | 30.3 | 30.8 | 186.2400370 | 44.701741 | 115.470889 | 0.1922103 | -5.00 | -0.4481451 | 2.40 | therapist | H | T | patient |
| 755 | Vid27 | legs | 63 | 31.8 | 32.2 | 31.6547407 | 109.419482 | 70.537111 | 0.1203192 | 5.00 | -0.2429986 | -2.70 | patient | H | T | therapist |
| 756 | Vid27 | legs | 64 | 32.3 | 32.8 | 343.1881852 | 34.023482 | 188.605833 | 0.0440761 | 5.00 | -0.3674851 | -2.43 | patient | H | T | patient |
| 757 | Vid27 | legs | 65 | 32.8 | 33.2 | 267.3887778 | 67.765667 | 167.577222 | 0.3493454 | 5.00 | -0.4315629 | -4.97 | patient | H | T | patient |
| 758 | Vid27 | legs | 66 | 33.3 | 33.8 | 25.6824444 | 64.921815 | 45.302130 | 0.3170645 | -4.10 | -0.4877684 | 1.93 | therapist | H | T | therapist |
| 759 | Vid27 | legs | 67 | 33.8 | 34.2 | 492.4403333 | 126.556407 | 309.498370 | 0.2506984 | -1.17 | -0.2050679 | 4.97 | patient | H | T | patient |
| 760 | Vid27 | legs | 68 | 34.3 | 34.8 | 56.9820741 | 21.099333 | 39.040704 | 0.2977210 | -5.00 | -0.1218491 | 1.23 | patient | H | T | patient |
| 761 | Vid27 | legs | 70 | 35.3 | 35.8 | 30.1625185 | 36.312148 | 33.237333 | 0.2350654 | -2.63 | -0.1850887 | 1.27 | patient | H | T | therapist |
| 762 | Vid27 | legs | 84 | 42.3 | 42.8 | 481.2394074 | 57.727704 | 269.483556 | 0.3568961 | -3.30 | -0.5602456 | 2.03 | therapist | H | T | patient |
| 763 | Vid27 | legs | 85 | 42.8 | 43.2 | 33.3441111 | 48.934148 | 41.139130 | 0.2864913 | 0.53 | 0.0174276 | -4.97 | therapist | H | T | therapist |
| 764 | Vid27 | legs | 86 | 43.3 | 43.8 | 29.6265556 | 117.394926 | 73.510741 | 0.3502428 | -5.00 | -0.2227230 | -1.77 | patient | H | T | therapist |
| 765 | Vid27 | legs | 88 | 44.3 | 44.8 | 26.7658148 | 60.527185 | 43.646500 | 0.4388509 | 1.03 | -0.1988042 | -4.43 | therapist | H | T | therapist |
| 766 | Vid27 | legs | 89 | 44.8 | 45.2 | 19.6450370 | 56.726963 | 38.186000 | 0.3003993 | 2.90 | -0.1794974 | -4.40 | therapist | H | T | therapist |
| 767 | Vid27 | legs | 92 | 46.3 | 46.8 | 109.9149630 | 26.295370 | 68.105167 | 0.3078055 | -5.00 | -0.0536498 | -1.37 | patient | H | T | patient |
| 768 | Vid27 | legs | 94 | 47.3 | 47.8 | 185.3839259 | 94.347222 | 139.865574 | 0.1036494 | 4.60 | -0.3103651 | 2.07 | therapist | H | T | patient |
| 769 | Vid28 | head | 9 | 4.4 | 4.9 | 42.1477037 | 42.768741 | 42.458222 | 0.1039172 | -2.80 | -0.6403316 | 3.00 | therapist | M | T | - |
| 770 | Vid28 | head | 13 | 6.4 | 6.9 | 27.5380741 | 45.737259 | 36.637667 | 0.4125555 | -3.63 | -0.2261608 | 4.23 | patient | M | T | therapist |
| 771 | Vid28 | head | 15 | 7.4 | 7.9 | 23.3761852 | 55.373667 | 39.374926 | -0.0071167 | 3.27 | -0.4914794 | -1.80 | patient | M | T | therapist |
| 772 | Vid28 | head | 17 | 8.4 | 8.9 | 18.4122593 | 99.024926 | 58.718593 | -0.3089450 | -5.00 | -0.7667483 | 1.27 | therapist | M | T | therapist |
| 773 | Vid28 | head | 19 | 9.4 | 9.9 | 12.7100370 | 133.352148 | 73.031093 | 0.0802200 | -3.33 | -0.4303371 | 1.67 | therapist | M | T | therapist |
| 774 | Vid28 | head | 21 | 10.4 | 10.9 | 16.9623704 | 50.622370 | 33.792370 | 0.0253476 | 1.80 | -0.2719417 | -3.60 | patient | M | T | therapist |
| 775 | Vid28 | head | 23 | 11.4 | 11.9 | 28.1254444 | 41.060593 | 34.593018 | 0.3857099 | -4.57 | -0.7730539 | 0.07 | - | M | T | therapist |
| 776 | Vid28 | head | 27 | 13.4 | 13.9 | 29.7303333 | 162.970667 | 96.350500 | 0.3342781 | 1.37 | -0.4616978 | -5.00 | patient | M | T | therapist |
| 777 | Vid28 | head | 29 | 14.4 | 14.9 | 19.2720741 | 106.650889 | 62.961481 | 0.4585894 | 1.37 | -0.0780225 | -5.00 | therapist | M | T | therapist |
| 778 | Vid28 | head | 30 | 14.9 | 15.4 | 11.4564074 | 149.272704 | 80.364556 | 0.0502517 | -3.93 | -0.3591757 | 5.00 | therapist | M | T | therapist |
| 779 | Vid28 | head | 31 | 15.4 | 15.9 | 22.7652963 | 60.095370 | 41.430333 | 0.1985007 | -0.80 | -0.4223390 | 3.23 | therapist | M | T | therapist |
| 780 | Vid28 | head | 35 | 17.4 | 17.9 | 30.7084444 | 52.597556 | 41.653000 | 0.3095230 | 2.13 | -0.3235211 | -5.00 | patient | M | T | therapist |
| 781 | Vid28 | head | 36 | 17.9 | 18.4 | 18.4221111 | 52.274926 | 35.348518 | 0.1099834 | -1.67 | -0.3217828 | 4.33 | therapist | M | T | therapist |
| 782 | Vid28 | head | 37 | 18.4 | 18.9 | 137.2610000 | 73.038222 | 105.149611 | 0.0369111 | -5.00 | -0.3401541 | 0.03 | - | M | T | patient |
| 783 | Vid28 | head | 38 | 18.9 | 19.4 | 28.6929259 | 55.813407 | 42.253167 | 0.4399127 | -2.63 | -0.0925951 | 0.10 | patient | M | T | therapist |
| 784 | Vid28 | head | 41 | 20.4 | 20.9 | 24.4552963 | 56.859556 | 40.657426 | 0.0796916 | 3.83 | -0.5187373 | -1.67 | patient | M | T | therapist |
| 785 | Vid28 | head | 50 | 24.9 | 25.4 | 36.6645185 | 58.845556 | 47.755037 | 0.3942060 | 4.00 | -0.3304095 | -2.37 | therapist | M | T | therapist |
| 786 | Vid28 | head | 55 | 27.4 | 27.9 | 15.3010000 | 62.157704 | 38.729352 | 0.0979130 | -5.00 | -0.5183217 | 2.50 | therapist | M | T | therapist |
| 787 | Vid28 | head | 62 | 30.9 | 31.4 | 19.6394074 | 63.757333 | 41.698370 | 0.2204684 | -1.40 | -0.3189925 | 5.00 | therapist | M | T | therapist |
| 788 | Vid28 | head | 77 | 38.4 | 38.9 | 15.7350000 | 57.940481 | 36.837741 | 0.2289840 | -1.00 | 0.0634670 | -2.60 | patient | M | T | therapist |
| 789 | Vid28 | head | 89 | 44.4 | 44.9 | 22.1006667 | 76.409074 | 49.254870 | 0.1664453 | -1.47 | -0.2707270 | -3.90 | patient | M | T | therapist |
| 790 | Vid28 | head | 92 | 45.9 | 46.4 | 17.3725926 | 89.336185 | 53.354389 | -0.0373005 | 2.40 | -0.3978271 | -1.77 | patient | M | T | therapist |
| 791 | Vid28 | torso | 17 | 8.4 | 8.9 | 144.9843704 | 98.334481 | 121.659426 | -0.1080975 | -5.00 | -0.4688679 | 0.30 | therapist | M | T | patient |
| 792 | Vid28 | torso | 19 | 9.4 | 9.9 | 148.5942222 | 298.376741 | 223.485481 | 0.2373505 | 5.00 | -0.2020261 | 2.83 | therapist | M | T | therapist |
| 793 | Vid28 | torso | 27 | 13.4 | 13.9 | 161.2650741 | 239.207222 | 200.236148 | 0.0785558 | 0.90 | -0.4398253 | -4.30 | patient | M | T | therapist |
| 794 | Vid28 | torso | 29 | 14.4 | 14.9 | 103.4410741 | 184.168556 | 143.804815 | 0.4458856 | 1.73 | -0.3998536 | -3.23 | therapist | M | T | therapist |
| 795 | Vid28 | torso | 36 | 17.9 | 18.4 | 86.8771481 | 87.942852 | 87.410000 | 0.1771638 | -4.10 | -0.5335424 | 4.13 | therapist | M | T | - |
| 796 | Vid28 | torso | 37 | 18.4 | 18.9 | 790.9863704 | 205.259185 | 498.122778 | -0.0843128 | 5.00 | -0.4543285 | -2.60 | patient | M | T | patient |
| 797 | Vid28 | torso | 38 | 18.9 | 19.4 | 404.4345926 | 68.615444 | 236.525018 | 0.1528649 | -2.00 | -0.0602386 | -3.63 | patient | M | T | patient |
| 798 | Vid28 | torso | 40 | 19.9 | 20.4 | 154.8684074 | 127.908148 | 141.388278 | 0.3869243 | -2.93 | -0.0258720 | 3.00 | patient | M | T | patient |
| 799 | Vid28 | torso | 43 | 21.4 | 21.9 | 78.4384815 | 147.022518 | 112.730500 | 0.1262797 | -3.23 | -0.4658451 | 2.03 | therapist | M | T | therapist |
| 800 | Vid28 | torso | 44 | 21.9 | 22.4 | 138.3644444 | 196.174556 | 167.269500 | 0.3427365 | 4.40 | -0.3731873 | -0.50 | patient | M | T | therapist |
| 801 | Vid28 | torso | 50 | 24.9 | 25.4 | 225.9212593 | 67.140370 | 146.530815 | 0.4101275 | 5.00 | -0.2976304 | -5.00 | therapist | M | T | patient |
| 802 | Vid28 | torso | 58 | 28.9 | 29.4 | 96.8646667 | 65.991111 | 81.427889 | 0.0351322 | -5.00 | -0.7187144 | 0.57 | therapist | M | T | patient |
| 803 | Vid28 | torso | 60 | 29.9 | 30.4 | 115.2648889 | 125.837185 | 120.551037 | 0.3082655 | 1.47 | -0.1781409 | -5.00 | therapist | M | T | - |
| 804 | Vid28 | torso | 62 | 30.9 | 31.4 | 76.0661481 | 126.605333 | 101.335741 | 0.4174609 | 3.97 | -0.2968778 | -4.13 | therapist | M | T | therapist |
| 805 | Vid28 | torso | 63 | 31.4 | 31.9 | 165.4854815 | 108.391815 | 136.938648 | 0.0053003 | 1.03 | -0.4328639 | -5.00 | patient | M | T | patient |
| 806 | Vid28 | torso | 77 | 38.4 | 38.9 | 87.8329630 | 71.297185 | 79.565074 | 0.2634115 | -1.60 | -0.1137747 | 3.33 | patient | M | T | patient |
| 807 | Vid28 | torso | 83 | 41.4 | 41.9 | 88.7041481 | 123.007704 | 105.855926 | 0.3866463 | -3.03 | -0.1232499 | 5.00 | patient | M | T | therapist |
| 808 | Vid28 | torso | 84 | 41.9 | 42.4 | 128.5509259 | 248.204222 | 188.377574 | 0.5552850 | -0.70 | -0.2658092 | 4.33 | patient | M | T | therapist |
| 809 | Vid28 | torso | 88 | 43.9 | 44.4 | 176.1631481 | 99.527926 | 137.845537 | -0.0026625 | -5.00 | -0.3986550 | 3.73 | therapist | M | T | patient |
| 810 | Vid28 | torso | 89 | 44.4 | 44.9 | 147.1507778 | 180.404000 | 163.777389 | 0.2669501 | -0.93 | -0.3909993 | -3.60 | patient | M | T | therapist |
| 811 | Vid28 | torso | 91 | 45.4 | 45.9 | 109.1270370 | 128.830296 | 118.978667 | 0.1922264 | 5.00 | -0.2866617 | -5.00 | patient | M | T | therapist |
| 812 | Vid28 | legs | 1 | 0.4 | 0.9 | 22.9185556 | 5.785556 | 14.352056 | 0.2002676 | -2.67 | -0.1852763 | 4.73 | patient | M | T | patient |
| 813 | Vid28 | legs | 7 | 3.4 | 3.9 | 62.5507407 | 9.776407 | 36.163574 | 0.3899253 | -5.00 | -0.2039502 | 4.30 | patient | M | T | patient |
| 814 | Vid28 | legs | 8 | 3.9 | 4.4 | 31.4217778 | 3.659852 | 17.540815 | 0.3256864 | -0.37 | -0.1802788 | 1.13 | patient | M | T | patient |
| 815 | Vid28 | legs | 9 | 4.4 | 4.9 | 26.2077407 | 4.954630 | 15.581185 | 0.5025170 | -1.47 | -0.0521414 | 4.60 | patient | M | T | patient |
| 816 | Vid28 | legs | 15 | 7.4 | 7.9 | 84.6885556 | 60.161333 | 72.424944 | 0.1956295 | -5.00 | -0.4553339 | -0.13 | patient | M | T | patient |
| 817 | Vid28 | legs | 17 | 8.4 | 8.9 | 4.9261852 | 117.860778 | 61.393482 | 0.0973044 | 1.20 | -0.4468503 | -4.30 | patient | M | T | therapist |
| 818 | Vid28 | legs | 26 | 12.9 | 13.4 | 61.9184074 | 126.371111 | 94.144759 | 0.3304957 | 3.57 | -0.3089065 | -5.00 | therapist | M | T | therapist |
| 819 | Vid28 | legs | 30 | 14.9 | 15.4 | 49.9910000 | 36.690852 | 43.340926 | 0.1028356 | -3.33 | -0.2544730 | 0.23 | therapist | M | T | patient |
| 820 | Vid28 | legs | 31 | 15.4 | 15.9 | 38.7240741 | 14.772926 | 26.748500 | 0.2455138 | 3.60 | -0.1535657 | 1.50 | therapist | M | T | patient |
| 821 | Vid28 | legs | 32 | 15.9 | 16.4 | 22.3800000 | 9.584556 | 15.982278 | 0.1869216 | -2.57 | -0.1824447 | 4.67 | patient | M | T | patient |
| 822 | Vid28 | legs | 34 | 16.9 | 17.4 | 8.7153333 | 18.165519 | 13.440426 | 0.0329878 | 5.00 | -0.5462209 | -1.13 | patient | M | T | therapist |
| 823 | Vid28 | legs | 35 | 17.4 | 17.9 | 3.0612222 | 74.279704 | 38.670463 | 0.4070303 | 0.93 | 0.0223388 | -2.60 | therapist | M | T | therapist |
| 824 | Vid28 | legs | 37 | 18.4 | 18.9 | 11.7739259 | 11.496259 | 11.635093 | 0.0521455 | 0.63 | -0.1258064 | -1.90 | patient | M | T | - |
| 825 | Vid28 | legs | 39 | 19.4 | 19.9 | 7.5513333 | 4.390407 | 5.970870 | 0.2269754 | 5.00 | -0.3922493 | -3.03 | patient | M | T | patient |
| 826 | Vid28 | legs | 44 | 21.9 | 22.4 | 67.4697778 | 18.324889 | 42.897333 | 0.1841744 | 4.97 | -0.4336982 | -0.93 | patient | M | T | patient |
| 827 | Vid28 | legs | 46 | 22.9 | 23.4 | 30.8951481 | 4.047444 | 17.471296 | 0.0197560 | 5.00 | -0.5638643 | 0.53 | therapist | M | T | patient |
| 828 | Vid28 | legs | 48 | 23.9 | 24.4 | 67.5387037 | 17.154259 | 42.346482 | 0.3362171 | 1.10 | -0.0986322 | -5.00 | therapist | M | T | patient |
| 829 | Vid28 | legs | 49 | 24.4 | 24.9 | 28.5840000 | 62.234593 | 45.409296 | 0.5611799 | 0.70 | -0.1983853 | 4.80 | therapist | M | T | therapist |
| 830 | Vid28 | legs | 78 | 38.9 | 39.4 | 61.9036296 | 8.436704 | 35.170167 | 0.4696132 | -1.33 | -0.1524075 | -5.00 | patient | M | T | patient |
| 831 | Vid28 | legs | 83 | 41.4 | 41.9 | 52.6111111 | 9.031444 | 30.821278 | 0.4153535 | 2.30 | -0.1178675 | -5.00 | therapist | M | T | patient |
| 832 | Vid28 | legs | 84 | 41.9 | 42.4 | 13.9009630 | 16.518852 | 15.209907 | 0.4510004 | -0.57 | -0.1895065 | -4.93 | patient | M | T | therapist |
| 833 | Vid28 | legs | 85 | 42.4 | 42.9 | 27.4787037 | 8.844778 | 18.161741 | -0.1476220 | 5.00 | -0.5777941 | 1.40 | therapist | M | T | patient |
| 834 | Vid28 | legs | 86 | 42.9 | 43.4 | 27.4958889 | 9.542148 | 18.519019 | 0.4080091 | 1.73 | -0.1829507 | -3.27 | therapist | M | T | patient |
| 835 | Vid28 | legs | 89 | 44.4 | 44.9 | 59.8609259 | 12.667333 | 36.264130 | 0.4688016 | -1.33 | -0.2934240 | -4.67 | patient | M | T | patient |
| 836 | Vid28 | legs | 90 | 44.9 | 45.4 | 39.0998519 | 5.144704 | 22.122278 | -0.0259075 | 3.90 | -0.3489453 | -5.00 | patient | M | T | patient |
| 837 | Vid28 | legs | 92 | 45.9 | 46.4 | 27.9575185 | 6.117407 | 17.037463 | 0.3840571 | -3.13 | -0.2620874 | 4.63 | patient | M | T | patient |
| 838 | Vid29 | head | 3 | 1.8 | 2.3 | 59.5818519 | 13.487778 | 36.534815 | 0.1910416 | -4.53 | -0.4317531 | 1.77 | therapist | M | T | patient |
| 839 | Vid29 | head | 15 | 7.8 | 8.3 | 59.4688519 | 26.821407 | 43.145130 | 0.6020482 | -0.33 | 0.0806876 | 5.00 | patient | M | T | patient |
| 840 | Vid29 | head | 20 | 10.3 | 10.8 | 75.3807407 | 21.959259 | 48.670000 | -0.4132305 | 5.00 | -0.7893622 | -0.57 | patient | M | T | patient |
| 841 | Vid29 | head | 27 | 13.8 | 14.3 | 53.5768889 | 41.385111 | 47.481000 | 0.2194616 | 2.40 | -0.2758011 | -5.00 | patient | M | T | patient |
| 842 | Vid29 | head | 29 | 14.8 | 15.3 | 47.6297407 | 35.504333 | 41.567037 | 0.4457853 | -5.00 | -0.5192066 | 5.00 | therapist | M | T | patient |
| 843 | Vid29 | head | 32 | 16.3 | 16.8 | 260.3641111 | 16.959778 | 138.661944 | 0.1039033 | 3.47 | -0.4346203 | -2.57 | patient | M | T | patient |
| 844 | Vid29 | head | 33 | 16.8 | 17.3 | 420.9417037 | 26.139926 | 223.540815 | 0.1715330 | -1.90 | -0.4406760 | 2.63 | therapist | M | T | patient |
| 845 | Vid29 | head | 35 | 17.8 | 18.3 | 244.3180000 | 33.961111 | 139.139556 | 0.2089886 | -0.43 | -0.2473217 | 1.53 | therapist | M | T | patient |
| 846 | Vid29 | head | 39 | 19.8 | 20.3 | 115.8342593 | 63.690963 | 89.762611 | 0.2412254 | 1.10 | -0.3166797 | -4.40 | patient | M | T | patient |
| 847 | Vid29 | head | 44 | 22.3 | 22.8 | 134.2650000 | 52.050926 | 93.157963 | -0.1150728 | 3.43 | -0.4219337 | -2.17 | patient | M | T | patient |
| 848 | Vid29 | head | 45 | 22.8 | 23.3 | 54.4157778 | 21.764000 | 38.089889 | 0.0804447 | -4.73 | -0.5040150 | 2.53 | therapist | M | T | patient |
| 849 | Vid29 | head | 46 | 23.3 | 23.8 | 58.8053333 | 60.884185 | 59.844759 | 0.2017119 | -0.90 | -0.2827372 | 2.53 | therapist | M | T | - |
| 850 | Vid29 | head | 51 | 25.8 | 26.3 | 156.3282222 | 25.486852 | 90.907537 | 0.2392179 | -5.00 | -0.4499577 | -0.37 | patient | M | T | patient |
| 851 | Vid29 | head | 60 | 30.3 | 30.8 | 43.1232593 | 43.847111 | 43.485185 | 0.4274471 | -3.93 | -0.2551202 | 3.73 | patient | M | T | - |
| 852 | Vid29 | head | 63 | 31.8 | 32.3 | 157.3580741 | 77.873407 | 117.615741 | 0.1988857 | -2.27 | -0.4848427 | 0.27 | therapist | M | T | patient |
| 853 | Vid29 | head | 72 | 36.3 | 36.8 | 104.9251111 | 16.468630 | 60.696870 | 0.0442919 | 2.77 | -0.4511196 | -3.33 | patient | M | T | patient |
| 854 | Vid29 | head | 78 | 39.3 | 39.8 | 155.2562593 | 28.116704 | 91.686481 | -0.3136812 | -3.57 | -0.5694293 | -1.43 | patient | M | T | patient |
| 855 | Vid29 | head | 79 | 39.8 | 40.3 | 41.6192222 | 120.426222 | 81.022722 | 0.3312675 | 5.00 | -0.1433118 | 1.37 | therapist | M | T | therapist |
| 856 | Vid29 | torso | 1 | 0.8 | 1.3 | 165.3228148 | 91.392185 | 128.357500 | -0.2300256 | -4.43 | -0.5403401 | 0.83 | therapist | M | T | patient |
| 857 | Vid29 | torso | 14 | 7.3 | 7.8 | 284.3814074 | 298.538667 | 291.460037 | -0.1740524 | 3.13 | -0.5299663 | -2.83 | patient | M | T | - |
| 858 | Vid29 | torso | 15 | 7.8 | 8.3 | 282.7261852 | 74.216111 | 178.471148 | 0.2292020 | 5.00 | -0.2837741 | -4.63 | patient | M | T | patient |
| 859 | Vid29 | torso | 27 | 13.8 | 14.3 | 397.4155556 | 47.443630 | 222.429593 | 0.3013287 | -3.30 | -0.4103537 | 4.70 | therapist | M | T | patient |
| 860 | Vid29 | torso | 33 | 16.8 | 17.3 | 334.0586296 | 96.164630 | 215.111630 | 0.4259655 | -1.63 | -0.2448773 | 2.50 | patient | M | T | patient |
| 861 | Vid29 | torso | 34 | 17.3 | 17.8 | 396.7085185 | 38.872815 | 217.790667 | 0.0676643 | -1.67 | -0.5467112 | 2.53 | therapist | M | T | patient |
| 862 | Vid29 | torso | 35 | 17.8 | 18.3 | 354.8410741 | 51.000370 | 202.920722 | 0.3754991 | 0.43 | 0.0299817 | -5.00 | therapist | M | T | patient |
| 863 | Vid29 | torso | 39 | 19.8 | 20.3 | 667.0586667 | 193.453963 | 430.256315 | 0.2987660 | 4.53 | -0.5149629 | -5.00 | patient | M | T | patient |
| 864 | Vid29 | torso | 44 | 22.3 | 22.8 | 419.1382222 | 174.275444 | 296.706833 | 0.2718116 | 3.00 | -0.3263998 | -3.83 | patient | M | T | patient |
| 865 | Vid29 | torso | 46 | 23.3 | 23.8 | 278.0824444 | 318.188630 | 298.135537 | -0.1854895 | -3.07 | -0.4844529 | 0.20 | therapist | M | T | therapist |
| 866 | Vid29 | torso | 51 | 25.8 | 26.3 | 529.5191852 | 39.613593 | 284.566389 | 0.2353403 | 5.00 | -0.2302195 | -5.00 | therapist | M | T | patient |
| 867 | Vid29 | torso | 63 | 31.8 | 32.3 | 193.5498148 | 258.398963 | 225.974389 | -0.0644875 | -1.43 | -0.5418395 | -3.50 | patient | M | T | therapist |
| 868 | Vid29 | torso | 65 | 32.8 | 33.3 | 531.1755926 | 42.182815 | 286.679204 | 0.0721129 | -4.63 | -0.1846273 | -2.63 | patient | M | T | patient |
| 869 | Vid29 | torso | 76 | 38.3 | 38.8 | 317.7614815 | 244.739963 | 281.250722 | 0.2113922 | 5.00 | -0.4318620 | -5.00 | patient | M | T | patient |
| 870 | Vid29 | torso | 78 | 39.3 | 39.8 | 430.2787407 | 209.211185 | 319.744963 | -0.4400976 | -5.00 | -0.7605584 | -0.33 | patient | M | T | patient |
| 871 | Vid29 | torso | 81 | 40.8 | 41.3 | 175.8366667 | 195.781074 | 185.808870 | 0.2907019 | -3.93 | -0.3207417 | 0.50 | therapist | M | T | therapist |
| 872 | Vid29 | legs | 1 | 0.8 | 1.3 | 22.5658519 | 49.786296 | 36.176074 | -0.0065542 | -5.00 | -0.5723024 | 0.53 | therapist | M | T | therapist |
| 873 | Vid29 | legs | 14 | 7.3 | 7.8 | 7.2526667 | 55.325704 | 31.289185 | 0.3212738 | 3.20 | -0.3084541 | -4.17 | therapist | M | T | therapist |
| 874 | Vid29 | legs | 15 | 7.8 | 8.3 | 13.3691111 | 34.378630 | 23.873870 | 0.1603497 | -4.43 | -0.3543145 | 2.10 | therapist | M | T | therapist |
| 875 | Vid29 | legs | 34 | 17.3 | 17.8 | 5.4080000 | 40.650222 | 23.029111 | 0.2089403 | 4.60 | -0.5318993 | -5.00 | patient | M | T | therapist |
| 876 | Vid29 | legs | 39 | 19.8 | 20.3 | 32.7535185 | 24.108815 | 28.431167 | 0.3813939 | 4.87 | -0.3131684 | -5.00 | therapist | M | T | patient |
| 877 | Vid29 | legs | 44 | 22.3 | 22.8 | 96.7797407 | 95.706593 | 96.243167 | -0.0448950 | -0.80 | -0.3513054 | 5.00 | therapist | M | T | - |
| 878 | Vid29 | legs | 46 | 23.3 | 23.8 | 65.6130000 | 170.130296 | 117.871648 | -0.2165746 | -3.27 | -0.4673382 | -0.97 | patient | M | T | therapist |
| 879 | Vid29 | legs | 47 | 23.8 | 24.3 | 15.5549630 | 37.553222 | 26.554093 | 0.2868057 | 3.57 | -0.0924668 | -3.87 | therapist | M | T | therapist |
| 880 | Vid29 | legs | 51 | 25.8 | 26.3 | 51.9376296 | 54.415074 | 53.176352 | 0.2635533 | -2.97 | -0.2109783 | -0.73 | patient | M | T | - |
| 881 | Vid29 | legs | 54 | 27.3 | 27.8 | 17.4796667 | 25.924519 | 21.702093 | -0.0509242 | 2.17 | -0.4108478 | -4.10 | patient | M | T | therapist |
| 882 | Vid29 | legs | 60 | 30.3 | 30.8 | 5.6544444 | 52.289407 | 28.971926 | 0.5805813 | -3.20 | -0.2641179 | 2.53 | patient | M | T | therapist |
| 883 | Vid29 | legs | 65 | 32.8 | 33.3 | 15.8391481 | 21.455926 | 18.647537 | 0.2800966 | -4.57 | -0.2859218 | 3.17 | therapist | M | T | therapist |
| 884 | Vid29 | legs | 76 | 38.3 | 38.8 | 5.8497778 | 19.835482 | 12.842630 | -0.0166262 | 4.50 | -0.3303344 | -0.40 | patient | M | T | therapist |
The functions comparativa_visual and corr_cruzadas can be used here for the segments registered in lista_mov_altos for visualization.
We illustrate this, with the ten segments with highest max correlation, and the ten segments with larger movements.
First, for the top correlations:
| id | video | zone | num_period | start | end | mov_patient | mov_therapist | mov_medio | spearman_max | lag_spearman_max | spearman_min | lag_spearman_min | lidera | sex | type | se_mueve_mas |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 509 | Vid23 | head | 81 | 40.2 | 40.7 | 94.12644 | 444.73063 | 269.42854 | 0.8515147 | 0.23 | -0.3461801 | -5.00 | therapist | M | T | therapist |
| 505 | Vid23 | head | 61 | 30.2 | 30.7 | 144.85274 | 706.94926 | 425.90100 | 0.7940135 | 0.20 | 0.0794257 | -5.00 | therapist | M | T | therapist |
| 77 | Vid12 | legs | 37 | 18.2 | 18.6 | 24.29307 | 137.46667 | 80.87987 | 0.7838769 | 0.67 | 0.1411525 | -5.00 | therapist | M | T | therapist |
| 506 | Vid23 | head | 67 | 33.2 | 33.7 | 55.95467 | 478.36833 | 267.16150 | 0.7472404 | -2.83 | 0.2011471 | 5.00 | patient | M | T | therapist |
| 503 | Vid23 | head | 55 | 27.2 | 27.7 | 113.70719 | 801.72048 | 457.71383 | 0.7269048 | 0.17 | -0.2850257 | -1.73 | therapist | M | T | therapist |
| 307 | Vid18 | legs | 33 | 16.2 | 16.7 | 53.61600 | 1764.35248 | 908.98424 | 0.7234917 | 1.07 | -0.0210629 | -5.00 | therapist | H | C | therapist |
| 584 | Vid24 | legs | 31 | 15.1 | 15.6 | 238.66341 | 50.37037 | 144.51689 | 0.7017951 | 0.87 | -0.1044069 | -5.00 | therapist | M | T | patient |
| 369 | Vid19 | legs | 67 | 33.2 | 33.6 | 88.35000 | 313.40737 | 200.87869 | 0.6786655 | 3.87 | -0.2057345 | -5.00 | therapist | H | T | therapist |
| 424 | Vid20 | legs | 64 | 31.6 | 32.1 | 44.53685 | 869.81530 | 457.17607 | 0.6785646 | 3.03 | -0.1680119 | -5.00 | therapist | M | T | therapist |
| 724 | Vid27 | torso | 14 | 7.3 | 7.8 | 72.73563 | 304.65433 | 188.69498 | 0.6779498 | 0.97 | -0.0971246 | -5.00 | therapist | H | T | therapist |
And now for the segments with larger movement:
| id | video | zone | num_period | start | end | mov_patient | mov_therapist | mov_medio | spearman_max | lag_spearman_max | spearman_min | lag_spearman_min | lidera | sex | type | se_mueve_mas |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 509 | Vid23 | head | 81 | 40.2 | 40.7 | 94.12644 | 444.73063 | 269.42854 | 0.8515147 | 0.23 | -0.3461801 | -5.00 | therapist | M | T | therapist |
| 505 | Vid23 | head | 61 | 30.2 | 30.7 | 144.85274 | 706.94926 | 425.90100 | 0.7940135 | 0.20 | 0.0794257 | -5.00 | therapist | M | T | therapist |
| 77 | Vid12 | legs | 37 | 18.2 | 18.6 | 24.29307 | 137.46667 | 80.87987 | 0.7838769 | 0.67 | 0.1411525 | -5.00 | therapist | M | T | therapist |
| 506 | Vid23 | head | 67 | 33.2 | 33.7 | 55.95467 | 478.36833 | 267.16150 | 0.7472404 | -2.83 | 0.2011471 | 5.00 | patient | M | T | therapist |
| 503 | Vid23 | head | 55 | 27.2 | 27.7 | 113.70719 | 801.72048 | 457.71383 | 0.7269048 | 0.17 | -0.2850257 | -1.73 | therapist | M | T | therapist |
| 307 | Vid18 | legs | 33 | 16.2 | 16.7 | 53.61600 | 1764.35248 | 908.98424 | 0.7234917 | 1.07 | -0.0210629 | -5.00 | therapist | H | C | therapist |
| 584 | Vid24 | legs | 31 | 15.1 | 15.6 | 238.66341 | 50.37037 | 144.51689 | 0.7017951 | 0.87 | -0.1044069 | -5.00 | therapist | M | T | patient |
| 369 | Vid19 | legs | 67 | 33.2 | 33.6 | 88.35000 | 313.40737 | 200.87869 | 0.6786655 | 3.87 | -0.2057345 | -5.00 | therapist | H | T | therapist |
| 424 | Vid20 | legs | 64 | 31.6 | 32.1 | 44.53685 | 869.81530 | 457.17607 | 0.6785646 | 3.03 | -0.1680119 | -5.00 | therapist | M | T | therapist |
| 724 | Vid27 | torso | 14 | 7.3 | 7.8 | 72.73563 | 304.65433 | 188.69498 | 0.6779498 | 0.97 | -0.0971246 | -5.00 | therapist | H | T | therapist |
write.csv(selected_lapses,“selected_lapses.csv”,row.names = FALSE) write.csv(lista_mov_altos,“lista_mov_altos.csv”,row.names = FALSE)